Files
tripwithbonus/frontend/Dockerfile
2025-05-16 12:53:49 +03:00

7 lines
113 B
Docker

FROM node:23-alpine
WORKDIR /build
COPY . ./
RUN npm install
RUN npm run build
EXPOSE 3000
CMD [ "npm", "start" ]