-
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
Showing
5 changed files
with
9 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# syntax=docker/dockerfile:1.4 | ||
FROM rubensa/ubuntu-tini-user | ||
FROM rubensa/ubuntu-tini-user:24.04 | ||
LABEL author="Ruben Suarez <[email protected]>" | ||
|
||
# Architecture component of TARGETPLATFORM (platform of the build result) | ||
|
@@ -315,7 +315,7 @@ EOT | |
# Ubuntu 22.04 comes with OpenSSL 3.0 and Ruby versions earlier than 2.4 used OpenSSL 1.0 | ||
# openssl installation directory | ||
ENV OPENSSL_ROOT_1_0=/opt/openssl-1.0 | ||
COPY --from=rubensa/ubuntu-openssl-old ${OPENSSL_ROOT_1_0} ${OPENSSL_ROOT_1_0} | ||
COPY --from=rubensa/ubuntu-openssl-old:24.04 ${OPENSSL_ROOT_1_0} ${OPENSSL_ROOT_1_0} | ||
# Install OpenSSL 1.0 | ||
RUN <<EOT | ||
echo "# Installing OpenSSL 1.0..." | ||
|
@@ -331,7 +331,7 @@ EOT | |
# Ubuntu 22.04 comes with OpenSSL 3.0 and Ruby versions earlier than 3.1 used OpenSSL 1.1 | ||
# openssl installation directory | ||
ENV OPENSSL_ROOT_1_1=/opt/openssl-1.1 | ||
COPY --from=rubensa/ubuntu-openssl-old ${OPENSSL_ROOT_1_1} ${OPENSSL_ROOT_1_1} | ||
COPY --from=rubensa/ubuntu-openssl-old:24.04 ${OPENSSL_ROOT_1_1} ${OPENSSL_ROOT_1_1} | ||
# Install OpenSSL 1.1 | ||
RUN <<EOT | ||
echo "# Installing OpenSSL 1.1..." | ||
|
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
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