All checks were successful
continuous-integration/drone/push Build is passing
15 lines
147 B
Docker
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"]
|