joclud-app/DOCKERFILE
2024-09-16 17:28:25 +02:00

9 lines
No EOL
76 B
Text

FROM node:latest-alpine
WORKDIR /app
COPY . /app
RUN npm i
CMD npm start