Skip to content

Commit 93c26ff

Browse files
authored
Merge pull request #5888 from stacks-network/fix/5864
Fix/5864
2 parents 505cdfb + 1f707ed commit 93c26ff

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/image-build-source.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@ jobs:
2121
image:
2222
name: Build Image
2323
runs-on: ubuntu-latest
24-
strategy:
25-
fail-fast: false
26-
## Build a maximum of 2 images concurrently based on matrix.dist
27-
max-parallel: 2
28-
matrix:
29-
dist:
30-
- debian
3124
steps:
3225
## Setup Docker for the builds
3326
- name: Docker setup
@@ -63,7 +56,7 @@ jobs:
6356
id: docker_build
6457
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
6558
with:
66-
file: ./.github/actions/dockerfiles/Dockerfile.${{matrix.dist}}-source
59+
file: ./Dockerfile
6760
platforms: ${{ env.docker_platforms }}
6861
tags: ${{ steps.docker_metadata.outputs.tags }}
6962
labels: ${{ steps.docker_metadata.outputs.labels }}

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ COPY . .
1010

1111
RUN mkdir /out
1212

13+
RUN rustup toolchain install stable
1314
RUN cargo build --features monitoring_prom,slog_json --release
1415

1516
RUN cp target/release/stacks-node /out

0 commit comments

Comments
 (0)