From c10a0d629fba574d0ef404fc77f9749e11a8af83 Mon Sep 17 00:00:00 2001 From: Varakh Date: Thu, 12 Dec 2024 08:46:33 +0100 Subject: [PATCH] chore(oci): use new ENV style in OCI definition --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index c3ac845..b60b903 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,10 +28,10 @@ LABEL maintainer="Varakh " \ org.opencontainers.image.description="upda" \ org.opencontainers.image.base.name="alpine:3.20" -ENV USER appuser -ENV GROUP appuser -ENV UID 2033 -ENV GID 2033 +ENV USER=appuser +ENV GROUP=appuser +ENV UID=2033 +ENV GID=2033 RUN apk --update upgrade && \ apk add sqlite tzdata && \ @@ -44,6 +44,6 @@ COPY --from=builder /app/bin/upda-server-linux-amd64 /usr/bin/upda-server USER ${USER} -ENV SERVER_PORT 8080 +ENV SERVER_PORT=8080 EXPOSE ${SERVER_PORT} CMD ["/usr/bin/upda-server"]