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

Commit

Permalink
add libc6-compat
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmostafa committed Feb 3, 2023
1 parent 9476c20 commit 9bb8175
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ RUN addgroup --system --gid ${CISA_GID} ${CISA_GROUP} \
###
ENV DEPS \
ca-certificates \
libc6-compat \
openssl \
wget

RUN apk --no-cache --quiet add ${DEPS}

# Install Con-PCA-Tasks binary file
Expand Down
8 changes: 4 additions & 4 deletions tests/container_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ def test_wait_for_ready(main_container):

def test_wait_for_exits(main_container, version_container):
"""Wait for containers to exit."""
assert main_container.wait() == 0, "Container service (main) did not exit cleanly"
assert (
version_container.wait() == 0
), "Container service (version) did not exit cleanly"
main_container.stop()
version_container.stop()
assert main_container.wait() == 143, "Container service (main) exited"
assert version_container.wait() == 143, "Container service (version) exited"


def test_output(main_container):
Expand Down

0 comments on commit 9bb8175

Please # to comment.