diff --git a/Dockerfile b/Dockerfile index 0e19bca735..1d4b3850c6 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"