Skip to content

Commit

Permalink
Adding a new image for the new WARP automated test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpalis committed Jun 14, 2024
1 parent eef30f3 commit 792f170
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,6 @@ atlassian-ide-plugin.xml

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

# .DS_Store files
.DS_Store
33 changes: 33 additions & 0 deletions 3rd-party-tools/warp-tester/Dockerfile
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"]

0 comments on commit 792f170

Please sign in to comment.