1
0
Fork 0

chore: avoid using legacy key/value format in Dockerfile

This commit is contained in:
Frédéric Guillot 2024-08-15 16:12:11 -07:00
parent 56d7e4d5e9
commit fa51c3ead7
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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"]