stack-service-base 0.0.86 → 0.0.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81247aedea18a60ee774f6e3f9c22c0a563a1d714f1c55a438cfd61bc71ff375
|
|
4
|
+
data.tar.gz: fe7b773eef14256221b1169f14fec4824045b6a8026863dfaa67f8b44bc224eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6664902c4ce80f8513d418fc60913b8c7b05f4bc4f86e569fb1dee328585fa3f32993d66fd10eff12aca221ce224f81e2437772d9be162a63452fc7ee468adc6
|
|
7
|
+
data.tar.gz: cf30c261ffec6b1d73d1f2e51ba9fa0dc984303e123d95cc7e45b70b81875545f49777ce417d585ffc91514131aaec054e8110cdbf5933eb3c196815e5798e6c
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
FROM ruby:3.
|
|
2
|
-
RUN
|
|
3
|
-
RUN gem install build-labels:0.0.
|
|
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
|
|
4
5
|
|
|
5
|
-
FROM base AS runner
|
|
6
6
|
WORKDIR /build
|
|
7
|
+
|
|
7
8
|
COPY . .
|
|
8
9
|
|
|
9
10
|
CMD ["bash", "-c", "-x", "\
|
|
10
11
|
env && cd /build/docker && \
|
|
11
12
|
build-labels -n -c docker-compose.yml changed gitlab set_version to_dockerfiles to_compose | tee bake.yml && \
|
|
12
13
|
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 && \
|
|
14
15
|
grep \"services: {}\" bake.yml || docker buildx bake -f bake.yml $([ -z \"$CI_SKIP_PUSH\" ] && echo \"--push\") && \
|
|
15
16
|
([ \"$CI_BUILD_TARGET\" = \"tests\" ] && (docker-compose -f bake.yml down && docker-compose -f bake.yml up --force-recreate ) || true) \
|
|
16
|
-
"]
|
|
17
|
+
"]
|