Add actual app to Dockerfile....

This commit is contained in:
Phillip Kühne 2019-11-01 19:18:25 +01:00
parent 50a9184358
commit 806d3a270a

View File

@ -15,6 +15,9 @@ RUN npm install
# If you are building your code for production # If you are building your code for production
# RUN npm ci --only=production # RUN npm ci --only=production
# Bundle app source
COPY . .
EXPOSE 3000 EXPOSE 3000
CMD [ "node", "server.js" ] CMD [ "node", "server.js" ]