Hermes is an open-source E-Mail tracking solution that is written in Go. It tracks emails using a tracking pixel.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
417 B

4 years ago
  1. # Use the official go docker image built on debian.
  2. FROM golang
  3. # Grab the source code and add it to the workspace.
  4. ADD . /Hermes
  5. # Install revel and the revel CLI.
  6. RUN go get github.com/revel/revel
  7. RUN go get github.com/revel/cmd/revel
  8. # Use the revel CLI to start up our application.
  9. WORKDIR /Hermes
  10. # ENTRYPOINT bash
  11. ENTRYPOINT revel run -a Hermes prod
  12. # Open up the port where the app is running.
  13. EXPOSE 9000