File tree Expand file tree Collapse file tree
project_template/gitlab-c/docker Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM ruby:3.3.0-alpine3.19 AS base
2- RUN apk add --update bash docker-cli-buildx docker-cli-compose git
3- RUN gem install build-labels:0.0.70 dry-stack:0.1.16
1+ FROM ruby:3.4.4-slim-bookworm AS base
2+ RUN apt update && apt install -y --no-install-recommends bash git
3+ RUN gem install build-labels:0.0.75
4+ RUN install-docker-static
45
5- FROM base AS runner
66WORKDIR /build
7+
78COPY . .
89
910CMD ["bash", "-c", "-x", "\
1011 env && cd /build/docker && \
1112 build-labels -n -c docker-compose.yml changed gitlab set_version to_dockerfiles to_compose | tee bake.yml && \
1213 export OTEL_RESOURCE_ATTRIBUTES=service.name=docker-builder,pipeline.id=${CI_PIPELINE_ID},project.name=${CI_PROJECT_NAME} && \
13- export REGISTRY_HOST=$CI_REGISTRY_HOST && \
14+ export REGISTRY_HOST=$CI_REGISTRY_HOST && export BUILDX_BAKE_ENTITLEMENTS_FS=0 && \
1415 grep \"services: {}\" bake.yml || docker buildx bake -f bake.yml $([ -z \"$CI_SKIP_PUSH\" ] && echo \"--push\") && \
1516 ([ \"$CI_BUILD_TARGET\" = \"tests\" ] && (docker-compose -f bake.yml down && docker-compose -f bake.yml up --force-recreate ) || true) \
16- "]
17+ "]
Original file line number Diff line number Diff line change 11module StackServiceBase
2- VERSION = '0.0.86 '
2+ VERSION = '0.0.87 '
33end
You can’t perform that action at this time.
0 commit comments