Skip to content

Commit da7eff0

Browse files
authored
Merge pull request #2 from DefangLabs/lionello-patch-1
Update curl command to use -f option for safety
2 parents 353f96d + 519ab6e commit da7eff0

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
push:
55
branches: ["main"]
66

7-
env:
8-
BUILD_ARGS: |
9-
RAILPACK_VERSION=0.4.0
10-
117
jobs:
128
build-arm:
139
runs-on: ubuntu-24.04-arm
@@ -18,7 +14,6 @@ jobs:
1814
- name: Build and push multi-arch Docker image
1915
uses: docker/build-push-action@v6
2016
with:
21-
build-args: ${{ env.BUILD_ARGS }}
2217
file: Dockerfile
2318
platforms: linux/arm64
2419
push: false
@@ -84,7 +79,6 @@ jobs:
8479
- name: Build and push multi-arch Docker image
8580
uses: docker/build-push-action@v6
8681
with:
87-
build-args: ${{ env.BUILD_ARGS }}
8882
file: Dockerfile
8983
platforms: linux/amd64,linux/arm64
9084
push: true

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ ENV PATH="/usr/bin:$PATH"
3939

4040
ARG RAILPACK_VERSION
4141
ENV RAILPACK_VERSION=${RAILPACK_VERSION}
42-
RUN curl -sSL https://railpack.com/install.sh | bash
42+
RUN curl -fsSL https://railpack.com/install.sh | bash

0 commit comments

Comments
 (0)