From 236ea55fabfccd4d84766dd21324596932a48305 Mon Sep 17 00:00:00 2001 From: branchmispredictor Date: Mon, 28 Dec 2020 16:07:07 -0500 Subject: [PATCH] Fix non-release docker builds --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0e19bca73..1d4b3850c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ ENV YARN_CACHE_FOLDER .cache/yarn/ COPY . ./ RUN \ - if [ $USE_RELEASE ]; then \ + if [ $USE_RELEASE = true ]; then \ rm -rf dist/ && \ wget https://dl.vikunja.io/frontend/vikunja-frontend-$RELEASE_VERSION.zip -O frontend-release.zip && \ unzip frontend-release.zip -d dist/ && \ @@ -42,4 +42,4 @@ ENV PGID 1000 LABEL maintainer="maintainers@vikunja.io" -CMD "/run.sh" \ No newline at end of file +CMD "/run.sh" -- 2.40.1