Try deployment with Drone
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-02-29 19:12:12 +01:00
parent a48896bf82
commit 39227ac397

View File

@@ -1,9 +1,14 @@
FROM node:current-alpine
WORKDIR /var/www
COPY . .
# Copy all build and modules
COPY package.json dist .
# Open port
EXPOSE 3000
CMD npm start
# Serve
CMD node dist
VOLUME ["/var/www"]