Skip to content

Commit 0462094

Browse files
committed
Fix docker images workflow error with openssl
1 parent 9151ee9 commit 0462094

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/docker-images.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,17 @@ jobs:
2929
- name: Set up Docker Buildx
3030
uses: docker/setup-buildx-action@v2
3131

32+
- name: Install OpenSSL
33+
run: |
34+
sudo apt-get update
35+
sudo apt-get install -y pkg-config libssl-dev
36+
37+
- name: Set OpenSSL Environment Variables
38+
run: |
39+
export OPENSSL_DIR=/usr/lib/ssl
40+
export OPENSSL_INCLUDE_DIR=/usr/include/openssl
41+
export OPENSSL_LIB_DIR=/usr/lib
42+
3243
- name: Log in to GitHub Container Registry
3344
uses: docker/login-action@v2
3445
with:

0 commit comments

Comments
 (0)