Remove unnecessary docker config

mrfusion already respects the PORT env var. No need to specify it.

After this commit, however, you will need to specify exposing the port
on the CLI when starting the container.

Heroku providers the PORT when it runs the container.

Signed-off-by: Kevin Fitzpatrick <kevin@influxdb.com>
pull/10616/head
Andrew Watkins 2016-09-22 11:36:15 -07:00 committed by Kevin Fitzpatrick
parent 1dc8f86396
commit f237cc714f
1 changed files with 1 additions and 5 deletions

View File

@ -6,8 +6,4 @@ RUN apk add --update ca-certificates && \
ADD mrfusion /mrfusion
EXPOSE 8888
# ENV PORT ||= 8888
CMD ["/mrfusion", "--port=$PORT"]
CMD ["/mrfusion"]