Skip to content

Commit

Permalink
support for non-python-based images
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Feb 12, 2025
1 parent 8a7345a commit ffe3a02
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ RUN apt-get update && \
libxml2-dev \
pkg-config \
procps \
python3 \
python3-pip \
tzdata \
unzip \
vim \
Expand All @@ -52,6 +54,9 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
apt-get -y autoremove

# if the python command does not exist, use python3 as the default
RUN command -v python || update-alternatives --install /usr/bin/python python /usr/bin/python3 1

# install giant-squid
RUN cargo install mwa_giant_squid --locked && \
cargo clean && \
Expand Down

0 comments on commit ffe3a02

Please sign in to comment.