diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index da90260823fc652bdc325bbdaa71192a2ca5c960..31260590890b807f76bdc81a50569f53cbf56285 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -153,8 +153,6 @@ build-search-service: build-images: image: docker.io/docker:${DOCKER_VERSION}-dind stage: build - variables: - DOCKER_BUILDKIT: 0 before_script: - "apk add --no-cache make" - echo "$CI_REGISTRY_PASSWORD" | docker login --username "$CI_REGISTRY_USER" --password-stdin $CI_REGISTRY_URL diff --git a/dbrepo-storage-service/init/Dockerfile b/dbrepo-storage-service/init/Dockerfile index fc49f7225f82e67c7162da6981cc0c8cb3910806..4f4f0c797434901d27311cadbbe250bb0e96c480 100644 --- a/dbrepo-storage-service/init/Dockerfile +++ b/dbrepo-storage-service/init/Dockerfile @@ -8,9 +8,6 @@ USER 1001 WORKDIR /app -COPY --chown=1001 ./init.sh /app/init.sh - -RUN chmod 0744 /app/init.sh \ - && mkdir -p /app/config +COPY --chown=1001 --chmod=0744 ./init.sh /app/init.sh ENTRYPOINT [ "bash", "-c", "/app/init.sh" ]