diff --git a/Dockerfile b/Dockerfile index e928987..57a549d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,8 +57,8 @@ ENV DEPS \ RUN apk --no-cache --quiet add ${DEPS} # Install Con-PCA-Tasks binary file -RUN wget "https://github.com/cisagov/con-pca-tasks/releases/download/v0.0.1/pca-linux-arm64" -RUN mv pca-linux-arm64 /bin/pca +RUN wget "https://github.com/cisagov/con-pca-tasks/releases/download/v0.0.1/pca-linux-amd64" +RUN mv pca-linux-amd64 /bin/pca RUN ["chmod", "+x", "/bin/pca"] USER ${CISA_USER} diff --git a/tests/container_test.py b/tests/container_test.py index 2a5b7a9..330d7ff 100644 --- a/tests/container_test.py +++ b/tests/container_test.py @@ -28,7 +28,6 @@ def test_wait_for_ready(main_container): """Wait for container to be ready.""" TIMEOUT = 10 for i in range(TIMEOUT): - print("READY MESSAGE: ", main_container.logs().decode("utf-8")) if READY_MESSAGE in main_container.logs().decode("utf-8"): break time.sleep(1)