mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-23 17:52:17 +00:00
10 lines
124 B
Docker
10 lines
124 B
Docker
|
FROM node:18.15.0-alpine3.17
|
||
|
|
||
|
WORKDIR /root
|
||
|
COPY . .
|
||
|
|
||
|
RUN npm install \
|
||
|
&& rm -rf /usr/local/share/.cache
|
||
|
|
||
|
CMD npm run dev
|