Last active
August 17, 2020 16:27
-
-
Save simonjcarr/397ea9a74a40a1351bd626ef872dca92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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