joclud-app/DOCKERFILE

5 lines
77 B
Text

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