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