mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-22 01:02:15 +00:00
11 lines
148 B
Docker
11 lines
148 B
Docker
FROM node:18.15.0-alpine3.17
|
|
|
|
WORKDIR /root
|
|
COPY . .
|
|
|
|
RUN npm install \
|
|
&& rm -rf /usr/local/share/.cache \
|
|
&& npm run build
|
|
|
|
CMD npm run preview
|