Skip to content

Instantly share code, notes, and snippets.

@joaobispo2077
Last active February 27, 2022 15:15
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 joaobispo2077/03a728ba83a10764182be8829cbf01b7 to your computer and use it in GitHub Desktop.
Save joaobispo2077/03a728ba83a10764182be8829cbf01b7 to your computer and use it in GitHub Desktop.
Node.js Javascript Simple Dockerfile Example
FROM node:16-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY src src
EXPOSE 3333
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment