diff --git a/Dockerfile b/Dockerfile index a632846..67b806a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,9 @@ ENV DEBIAN_FRONTEND=noninteractive # Install necessary packages RUN apt-get update && \ 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 app.py /app/app.py diff --git a/app.spy b/app.py similarity index 100% rename from app.spy rename to app.py