Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
install: true

- name: Build Docker image and store in cache
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: .
push: false
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ FROM ${WOLFI_BASE} AS builder

# build-base bundles gcc/g++, make and glibc-dev (for the C++ side
# of Factor's VM); the rest fetch + bootstrap the source tree.
RUN apk add --no-cache bash build-base curl git wget
# gcc / libstdc++-dev are held at the last 15.x release
RUN apk add --no-cache bash build-base curl git wget \
gcc=15.2.0-r11 libstdc++-dev=15.2.0-r11

# Factor 0.101
ARG FACTOR_COMMIT="a56e6390e81340be6573cb790311c0a980a5f369"
Expand Down
Loading