Skip to content
Snippets Groups Projects
Commit 1eb239bf authored by Mark Woodbridge's avatar Mark Woodbridge Committed by Frédéric Guillot
Browse files

Reinstate EXPOSE instruction

This ensures that the relevant port is published when using `docker run -P`, Traefik's Docker integration etc
parent d5afdf76
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ RUN go build \ ...@@ -9,6 +9,7 @@ RUN go build \
main.go main.go
FROM alpine:latest FROM alpine:latest
EXPOSE 8080
ENV LISTEN_ADDR 0.0.0.0:8080 ENV LISTEN_ADDR 0.0.0.0:8080
RUN apk --no-cache add ca-certificates tzdata RUN apk --no-cache add ca-certificates tzdata
COPY --from=build /go/src/app/miniflux /usr/bin/miniflux COPY --from=build /go/src/app/miniflux /usr/bin/miniflux
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment