Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
FROM golang:1.10
WORKDIR /go/src/app
COPY . .
RUN go-wrapper install

ENV HOUND_HTTP_PORT=9998
ENV HOUND_TEMPLATE_FILE=/go/src/app/index.html
ENV HOUND_SMTP_SERVER=postfix
ENV HOUND_SMTP_PORT=25
EXPOSE 9998
CMD ["go-wrapper", "run", "-config", "/config.json"]
CMD ["go", "run", "-config", "/config.json"]