Skip to content

Commit

Permalink
Merge pull request #1663 from atsign-foundation/cpswan-python3-c-builds
Browse files Browse the repository at this point in the history
ci: Use Python 3 in Docker builds for C sshnpd
  • Loading branch information
cpswan authored Jan 16, 2025
2 parents 6bc871f + 86db413 commit 4085573
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/c/sshnpd/tools/Dockerfile.musl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM alpine@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51
WORKDIR /sshnpd
COPY . .
RUN set -eux; \
apk add clang cmake coreutils git make; \
apk add clang cmake coreutils git make python3; \
case "$(uname -m)" in \
aarch64) ARCH="arm64";; \
armv7l) ARCH="arm";;\
Expand Down
2 changes: 1 addition & 1 deletion packages/c/sshnpd/tools/Dockerfile.package
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile.package
# A dockerfile for packaging SSH No Ports releases using docker buildx

FROM atsigncompany/cbuildimage:CMake-3.30.2@sha256:fe5604fec2c2b62097717ed71eed4a91657c0cab8c99c425d3f7f957330f5bd8 AS build
FROM atsigncompany/cbuildimage:CMake-3.31.4@sha256:0b443da3bccd746e23323eb374d19ba156b497ecbee6c5e84f97d77954515cbf AS build
WORKDIR /sshnpd
COPY . .
RUN set -eux; \
Expand Down

0 comments on commit 4085573

Please sign in to comment.