alekswilc 922b7ea633
All checks were successful
Build simrail.pro / build (push) Successful in 39s
fix(): fix nginx
2025-03-04 15:40:57 +01:00

13 lines
195 B
Docker

FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN yarn
COPY . .
RUN yarn add -D vite
RUN yarn global add live-server
RUN yarn rawbuild
EXPOSE 80
WORKDIR /app/dist
CMD ["yarn", "start"]