Skip to content

Commit 333f843

Browse files
authored
Merge pull request #262 from carlaKC/docker-baseimage
docker: fix base image to 1.85
2 parents bb69f66 + 853c351 commit 333f843

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/push-docker-image.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Upload digest
6868
uses: actions/upload-artifact@v4
6969
with:
70-
name: digests${{ inputs.artifact_name }}
70+
name: digests-${{ inputs.artifact_name }}-${{ strategy.job-index }}
7171
path: /tmp/digests/*
7272
if-no-files-found: error
7373
retention-days: 1
@@ -77,10 +77,15 @@ jobs:
7777
needs:
7878
- build
7979
steps:
80-
- name: Download digests
80+
- name: Download digest 0
8181
uses: actions/download-artifact@v4
8282
with:
83-
name: digests${{ inputs.artifact_name }}
83+
name: digests-${{ inputs.artifact_name }}-0
84+
path: /tmp/digests
85+
- name: Download digest 1
86+
uses: actions/download-artifact@v4
87+
with:
88+
name: digests-${{ inputs.artifact_name }}-1
8489
path: /tmp/digests
8590
- name: Set up Docker Buildx
8691
uses: docker/setup-buildx-action@v3

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Run from the root of the project
22

33
# Use the rust image as the base image for the build stage
4-
FROM rust:latest AS base
4+
FROM rust:1.85.0 AS base
5+
56
# buildkit will provide this automatically, no need to pass it in
67
ARG TARGETARCH
78

0 commit comments

Comments
 (0)