Files
housesof/Dockerfile
Félix Péault 8a4faa616e
All checks were successful
continuous-integration/drone/push Build is passing
Fix components imports
2020-02-29 21:15:17 +01:00

17 lines
163 B
Docker

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