Skip to content

Instantly share code, notes, and snippets.

@rigaspapas
Last active October 14, 2020 14:28
Show Gist options
  • Save rigaspapas/9ca66b2f72182eb51afd3f42cf16c2a6 to your computer and use it in GitHub Desktop.
Save rigaspapas/9ca66b2f72182eb51afd3f42cf16c2a6 to your computer and use it in GitHub Desktop.
FROM node:10-latest
EXPOSE 3000
RUN mkdir app
WORKDIR app
COPY . .
RUN npm install
RUN chmod a+x docker-entrypoint.sh
ENTRYPOINT ["./docker-entrypoint.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment