Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #289 from DRK3/ResolveDockerOpenSSLWarningARM
Browse files Browse the repository at this point in the history
fix: Docker warning when using frapsoft/openssl on arm64 system
  • Loading branch information
Derek Trider authored Sep 19, 2022
2 parents edf6413 + 4c28916 commit 64a56a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@ bdd-test: clean auth-docker generate-test-keys mock-login-consent-docker
@scripts/check_integration.sh


# TODO (#288): frapsoft/openssl only has an amd64 version. While this does work under amd64 and arm64 Mac OS currently,
# we should add an arm64 version for systems that can only run arm64 code.
.PHONY: generate-test-keys
generate-test-keys: clean
@mkdir -p -p test/bdd/fixtures/keys/tls
@docker run -i --rm \
@docker run -i --platform linux/amd64 --rm \
-v $(abspath .):/opt/workspace/auth \
--entrypoint "/opt/workspace/auth/scripts/generate_test_keys.sh" \
frapsoft/openssl
Expand Down

0 comments on commit 64a56a5

Please sign in to comment.