Skip to content

Instantly share code, notes, and snippets.

@simonjcarr
Last active August 17, 2020 16:27
Show Gist options
  • Select an option

  • Save simonjcarr/397ea9a74a40a1351bd626ef872dca92 to your computer and use it in GitHub Desktop.

Select an option

Save simonjcarr/397ea9a74a40a1351bd626ef872dca92 to your computer and use it in GitHub Desktop.
FROM node:12-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY app.js .
EXPOSE 8088
CMD [ "node", "app.js" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment