Skip to content

Commit 920b7e6

Browse files
committed
fixes deno + now github action generator picks up the dependency
1 parent dde805d commit 920b7e6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/images.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,9 @@ jobs:
569569
push: true
570570
cache-from: type=gha
571571
cache-to: type=gha,mode=max
572+
build-contexts: |
573+
yolean/runtime-deno=docker-image://ghcr.io/yolean/runtime-deno
574+
yolean/runtime-quarkus-ubuntu=docker-image://ghcr.io/yolean/runtime-quarkus-ubuntu
572575
-
573576
name: Build and push runtime-quarkus-deno latest
574577
uses: docker/build-push-action@v5

runtime-deno/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM denoland/deno:distroless-2.1.1@sha256:8c7fbba4e216e9535ac9869744ce36e225814aa3adc7754fdeb5930a2a86f34f AS deno
1+
FROM --platform=$TARGETPLATFORM denoland/deno:distroless-2.1.1@sha256:8c7fbba4e216e9535ac9869744ce36e225814aa3adc7754fdeb5930a2a86f34f AS deno
22

33
FROM --platform=$TARGETPLATFORM gcr.io/distroless/static-debian12:nonroot@sha256:d71f4b239be2d412017b798a0a401c44c3049a3ca454838473a4c32ed076bfea
44

runtime-quarkus-deno/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM yolean/runtime-deno AS runtime-deno
1+
FROM --platform=$TARGETPLATFORM yolean/runtime-deno AS runtime-deno
22

3-
FROM yolean/runtime-quarkus-ubuntu
3+
FROM --platform=$TARGETPLATFORM yolean/runtime-quarkus-ubuntu
44

55
COPY --from=runtime-deno \
66
/usr/local/bin/deno /usr/local/bin/deno

0 commit comments

Comments
 (0)