Landingpage/Dockerfile
Simon e3e49eac21
All checks were successful
continuous-integration/drone/push Build is passing
Fix docker and deployment scripts
2019-09-20 18:11:36 +02:00

10 lines
No EOL
121 B
Docker

FROM node:10.15-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --production
COPY . .
CMD npm start