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

# Use the official go docker image built on debian.
FROM golang
# Grab the source code and add it to the workspace.
ADD . /Hermes
# Install revel and the revel CLI.
RUN go get github.com/revel/revel
RUN go get github.com/revel/cmd/revel
# Use the revel CLI to start up our application.
WORKDIR /Hermes
# ENTRYPOINT bash
ENTRYPOINT revel run -a Hermes prod
# Open up the port where the app is running.
EXPOSE 9000