Skip to content

Commit

Permalink
containerized-testing-tool: Add containerization support
Browse files Browse the repository at this point in the history
Signed-off-by: Ankita Pareek <[email protected]>
  • Loading branch information
Ankita Pareek committed Feb 12, 2025
1 parent 01c0c4b commit 2442edc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/kata-containerized-test-tool/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM mcr.microsoft.com/azurelinux/base/core:3.0

WORKDIR /app
COPY kata-containerized-test-tool .
RUN chmod +x /app/kata-containerized-test-tool

RUN tdnf update -y && tdnf install -y \
util-linux \
procps-ng \
iproute \
&& tdnf clean all

RUN mkdir -p /results

ENTRYPOINT ["/app/kata-containerized-test-tool"]
CMD ["--output", "/results"]

0 comments on commit 2442edc

Please sign in to comment.