Files
rush-character-archive/frontend/Dockerfile
2025-06-19 23:34:08 -07:00

23 lines
258 B
Docker

FROM node:22.16
WORKDIR /srv/proto
COPY proto/ .
# RUN npm install
# RUN npm run build
WORKDIR /srv/frontend
COPY frontend/package.json .
RUN npm install
COPY frontend/. .
RUN npm i -g serve
RUN npm run build
EXPOSE 3000
CMD ["serve", "-s", "dist"]