fix
This commit is contained in:
parent
cdd8eb8044
commit
085488819d
1 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,13 @@
|
|||
FROM ubuntu:latest
|
||||
|
||||
# deaktiviert Nachfragen beim installieren von Paketen
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
||||
# Install necessary packages
|
||||
RUN apt-get update && \
|
||||
apt-get install -y git python3 && \
|
||||
pip3 install paramiko gitpython
|
||||
apt-get -y --no-install-recommends install git python3 python3-pip && \
|
||||
pip install --no-cache-dir paramiko gitpython
|
||||
|
||||
# Copy the script into the container
|
||||
COPY app.py /app/app.py
|
||||
|
|
Loading…
Reference in a new issue