diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 13df2e062f893906b9488bf057aa2ebb800fa2a8..da90260823fc652bdc325bbdaa71192a2ca5c960 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,6 @@ variables: HOSTALIASES: "./hosts" DOCKER_HOST: "unix:///var/run/dind/docker.sock" - DOCKER_BUILDKIT: 1 DOCKER_VERSION: "27" TESTCONTAINERS_RYUK_DISABLED: "false" ALPINE_VERSION: "3.21" diff --git a/dbrepo-storage-service/init/Dockerfile b/dbrepo-storage-service/init/Dockerfile index 252163754975db597fcbde8c9d45536ab1b95fe2..fc49f7225f82e67c7162da6981cc0c8cb3910806 100644 --- a/dbrepo-storage-service/init/Dockerfile +++ b/dbrepo-storage-service/init/Dockerfile @@ -8,8 +8,9 @@ USER 1001 WORKDIR /app -COPY --chown=1001 --chmod=0744 ./init.sh /app/init.sh +COPY --chown=1001 ./init.sh /app/init.sh -RUN mkdir -p /app/config +RUN chmod 0744 /app/init.sh \ + && mkdir -p /app/config ENTRYPOINT [ "bash", "-c", "/app/init.sh" ]