Skip to content

Commit eb41d4e

Browse files
committed
update
1 parent 9fdfe60 commit eb41d4e

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
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
66
WORKDIR /build
7+
78
COPY . .
89

910
CMD ["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+
"]

lib/stack-service-base/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module StackServiceBase
2-
VERSION = '0.0.86'
2+
VERSION = '0.0.87'
33
end

0 commit comments

Comments
 (0)