Files
housesof/Dockerfile
Félix Péault 39227ac397
Some checks failed
continuous-integration/drone/push Build is failing
Try deployment with Drone
2020-02-29 19:12:12 +01:00

15 lines
167 B
Docker

FROM node:current-alpine
WORKDIR /var/www
# Copy all build and modules
COPY package.json dist .
# Open port
EXPOSE 3000
# Serve
CMD node dist
VOLUME ["/var/www"]