Skip to content

Instantly share code, notes, and snippets.

@NorikDavtian
Created October 14, 2018 06:25
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 NorikDavtian/8acbced7a8a865d368599c8b25393f47 to your computer and use it in GitHub Desktop.
Save NorikDavtian/8acbced7a8a865d368599c8b25393f47 to your computer and use it in GitHub Desktop.
FROM alpine
RUN apk update && apk upgrade
RUN apk add nodejs
WORKDIR /app
ADD . /app
ENTRYPOINT [ "node", "server.js" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment