Skip to content

Instantly share code, notes, and snippets.

@abohmeed
Created December 13, 2020 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abohmeed/5df432049d4433354a2c730c2e8c5eca to your computer and use it in GitHub Desktop.
Save abohmeed/5df432049d4433354a2c730c2e8c5eca to your computer and use it in GitHub Desktop.
Dockerfile for sample API written in NodeJS
FROM node
ADD index.js package.json /app/
WORKDIR /app
RUN npm install
EXPOSE 3000
ENTRYPOINT ["node","index.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment