From c0d6bf0e02151bdcfef055c2f28b5cdb81120c1a Mon Sep 17 00:00:00 2001 From: Ike Johnson-Woods Date: Wed, 14 Aug 2024 19:30:50 +0800 Subject: [PATCH] Fix warnings from buildx --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f634f1..2240da6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ LABEL maintainer="GitHub Services " ARG TZ='UTC' -ENV DEFAULT_TZ ${TZ} +ENV DEFAULT_TZ=${TZ} RUN apk add --no-cache \ libxml2-dev \ @@ -32,4 +32,4 @@ RUN pipenv install COPY . /opt/github-team-sync -CMD pipenv run flask run +CMD ["pipenv", "run", "flask", "run"]