This commit is contained in:
Michael Grote 2023-07-21 18:17:40 +02:00
parent 085488819d
commit b803f56c04
2 changed files with 3 additions and 1 deletions

View file

@ -7,7 +7,9 @@ ENV DEBIAN_FRONTEND=noninteractive
# Install necessary packages # Install necessary packages
RUN apt-get update && \ RUN apt-get update && \
apt-get -y --no-install-recommends install git python3 python3-pip && \ apt-get -y --no-install-recommends install git python3 python3-pip && \
pip install --no-cache-dir paramiko gitpython pip install --no-cache-dir paramiko gitpython && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
# Copy the script into the container # Copy the script into the container
COPY app.py /app/app.py COPY app.py /app/app.py

View file