From 282b88779dcffb801dbc676629d3da2bdd9594f7 Mon Sep 17 00:00:00 2001 From: saffaalvi Date: Mon, 14 Sep 2020 15:33:59 -0400 Subject: [PATCH] fix(Dockerfile): add env variable --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1b08c3bd152..e9d520c8e48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,5 +33,6 @@ RUN CGO_ENABLED=0 go install . FROM scratch COPY --from=frontend /app/dist/out/default /static/ COPY --from=backend /go/bin/jupyter-apis /jupyter-apis +ENV LISTEN_ADDRESS 0.0.0.0:5000 EXPOSE 5000 ENTRYPOINT [ "/jupyter-apis" ]