chore: avoid using legacy key/value format in Dockerfile
This commit is contained in:
parent
56d7e4d5e9
commit
fa51c3ead7
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ LABEL org.opencontainers.image.source=https://github.com/miniflux/v2
|
|||
LABEL org.opencontainers.image.documentation=https://miniflux.app/docs/
|
||||
|
||||
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
|
||||
COPY --from=build /go/src/app/miniflux /usr/bin/miniflux
|
||||
USER 65534
|
||||
|
|
|
@ -14,6 +14,6 @@ LABEL org.opencontainers.image.source=https://github.com/miniflux/v2
|
|||
LABEL org.opencontainers.image.documentation=https://miniflux.app/docs/
|
||||
|
||||
EXPOSE 8080
|
||||
ENV LISTEN_ADDR 0.0.0.0:8080
|
||||
ENV LISTEN_ADDR=0.0.0.0:8080
|
||||
COPY --from=build /go/src/app/miniflux /usr/bin/miniflux
|
||||
CMD ["/usr/bin/miniflux"]
|
||||
|
|
Loading…
Reference in a new issue