Created
October 14, 2020 13:35
-
-
Save andre-carvalho/87c9a5c0720cfe13b9e6f536ca9df6c9 to your computer and use it in GitHub Desktop.
Dockerfile to create an image for the TerraAmazon-Monitor application
This file contains 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:8.11.4 | |
RUN npm install pm2 -g | |
WORKDIR /data | |
EXPOSE 36000-36010 | |
VOLUME ["/data"] | |
CMD ["pm2-runtime", "start", "ecosystem.config.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I need this because the TerraAmazon-monitor application is being kept in the private repository and I want to report, on DockerHub, where the terrabrasilis/ta-monitor image came from.