joclud-app/Dockerfile
2024-12-25 21:38:39 +00:00

5 lines
77 B
Docker

FROM node:alpine
WORKDIR /app
COPY . .
RUN npm i
CMD ["npm", "run", "start"]