-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a new image for the new WARP automated test framework
- Loading branch information
1 parent
eef30f3
commit 792f170
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
# Use the official Ubuntu LTS base image | ||
FROM ubuntu:24.04 | ||
|
||
LABEL author="Kevin Palis <[email protected]>" | ||
|
||
# Install dependencies, tools, and utilities. Then remove the package list to reduce the image size | ||
RUN apt-get update && apt-get install -y \ | ||
curl \ | ||
gnupg \ | ||
lsb-release \ | ||
software-properties-common \ | ||
unzip \ | ||
tree \ | ||
python3 \ | ||
python3-pip \ | ||
kubectl \ | ||
jq \ | ||
netcat \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install cromshell | ||
RUN pip3 install cromshell | ||
|
||
# Add any additional environment variables here if needed | ||
# ENV VAR_NAME=value | ||
|
||
# Set working directory | ||
WORKDIR /workspace | ||
|
||
|
||
# Set the entrypoint to bash | ||
ENTRYPOINT ["/bin/bash"] |