Skip to content
Snippets Groups Projects
Dockerfile 160 B
Newer Older
FROM node:10.15.3
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
RUN npm ci --only=production
COPY . .
EXPOSE 3000
CMD [ "npm", "start", "--force" ]