Skip to content

Instantly share code, notes, and snippets.

@andre-carvalho
Created October 14, 2020 13:35
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 andre-carvalho/87c9a5c0720cfe13b9e6f536ca9df6c9 to your computer and use it in GitHub Desktop.
Save andre-carvalho/87c9a5c0720cfe13b9e6f536ca9df6c9 to your computer and use it in GitHub Desktop.
Dockerfile to create an image for the TerraAmazon-Monitor application
FROM node:8.11.4
RUN npm install pm2 -g
WORKDIR /data
EXPOSE 36000-36010
VOLUME ["/data"]
CMD ["pm2-runtime", "start", "ecosystem.config.js"]
@andre-carvalho
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment