Files
housesof/Dockerfile
Félix Péault 6b374af18c
All checks were successful
continuous-integration/drone/push Build is passing
Updates
2020-04-04 11:54:13 +02:00

15 lines
147 B
Docker

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