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

Commit

Permalink
switch back to amd64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmostafa committed Feb 2, 2023
1 parent b905960 commit 9476c20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
1 change: 0 additions & 1 deletion tests/container_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9476c20

Please # to comment.