mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-02-22 17:22:14 +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
|