Created
June 18, 2014 01:43
-
-
Save pascalopitz/a54093cb90e7c4530e1c 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 go_clean | |
RUN mkdir -p /go/src | |
VOLUME /mnt | |
COPY ./src/jamendo /go/src/jamendo | |
COPY ./src/soap /go/src/soap | |
COPY ./src/sonos /go/src/sonos | |
COPY ./static /static | |
WORKDIR / | |
RUN go build -o jamendo /go/src/jamendo/server/main.go | |
ENV PORT 5555 | |
ENV HOSTNAME jamendo.pascalopitz.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment