-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbf2ed5
commit dec4ce2
Showing
5 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
x86-64-unknown-linux-builder-with-openssl_3.1.3/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
ARG FROM_TAG=release | ||
FROM ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:${FROM_TAG} | ||
|
||
RUN apk add --update --no-cache \ | ||
clang-dev \ | ||
linux-headers \ | ||
perl | ||
|
||
RUN cd /tmp && \ | ||
wget https://www.openssl.org/source/openssl-3.1.3.tar.gz && \ | ||
tar xf openssl-3.1.3.tar.gz && \ | ||
cd openssl-3.1.3 && \ | ||
./Configure --api=3.0.0 no-shared linux-x86_64 enable-rc5 enable-md2 && \ | ||
make && \ | ||
make install && \ | ||
cd /tmp && \ | ||
rm -rf openssl-3.1.3 | ||
|
||
# For some reason, even though lib64 is in the linker search path, the | ||
# libraries when installed there can't be found | ||
RUN cp /usr/local/lib64/libssl.a /usr/local/lib/ && \ | ||
cp /usr/local/lib64/libcrypto.a /usr/local/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# x86-64-unknown-linux-builder-with-openssl_3.1.3 | ||
|
||
The x86-64-unknown-linux-builder with OpenSSL 3.1.3 implementation installed as well. Rebuilt daily. |
47 changes: 47 additions & 0 deletions
47
x86-64-unknown-linux-builder-with-openssl_3.1.3/build-and-push.bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit | ||
set -o nounset | ||
|
||
# | ||
# *** You should already be logged in to DockerHub | ||
# and GitHub Container Registry when you run this *** | ||
# | ||
|
||
DOCKERFILE_DIR="$(dirname "$0")" | ||
|
||
## DockerHub | ||
|
||
NAME="ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.3" | ||
|
||
# built from x86-64-unknown-linux-builder release tag | ||
FROM_TAG=release | ||
TAG_AS=release | ||
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \ | ||
-t "${NAME}:${TAG_AS}" "${DOCKERFILE_DIR}" | ||
docker push "${NAME}:${TAG_AS}" | ||
|
||
# built from x86-64-unknown-linux-builder latest tag | ||
FROM_TAG=latest | ||
TAG_AS=latest | ||
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \ | ||
-t "${NAME}:${TAG_AS}" "${DOCKERFILE_DIR}" | ||
docker push "${NAME}:${TAG_AS}" | ||
|
||
## GitHub Container Registry | ||
|
||
NAME="ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.1.3" | ||
|
||
# built from x86-64-unknown-linux-builder release tag | ||
FROM_TAG=release | ||
TAG_AS=release | ||
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \ | ||
-t "${NAME}:${TAG_AS}" "${DOCKERFILE_DIR}" | ||
docker push "${NAME}:${TAG_AS}" | ||
|
||
# built from x86-64-unknown-linux-builder latest tag | ||
FROM_TAG=latest | ||
TAG_AS=latest | ||
docker build --pull --build-arg FROM_TAG="${FROM_TAG}" \ | ||
-t "${NAME}:${TAG_AS}" "${DOCKERFILE_DIR}" | ||
docker push "${NAME}:${TAG_AS}" |