Skip to content

Instantly share code, notes, and snippets.

@Gary-Ascuy
Last active January 7, 2021 05:05
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 Gary-Ascuy/f5fbb95ef41eb61ba343c0ce1c4b60a2 to your computer and use it in GitHub Desktop.
Save Gary-Ascuy/f5fbb95ef41eb61ba343c0ce1c4b60a2 to your computer and use it in GitHub Desktop.
VSinder - DevOps/Dockerfile
FROM node:15.5-alpine
LABEL MAINTAINER="gary.ascuy@gmail.com"
ENV NODE_ENV=production
WORKDIR /usr/app
EXPOSE 3666
ADD ./src/app.js ./src/app.js
ADD ./package.json ./package.json
RUN yarn install
CMD node ./src/app.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment