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
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
# deaktiviert Nachfragen beim installieren von Paketen
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
|
||||||
# Install necessary packages
|
# Install necessary packages
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y git python3 && \
|
apt-get -y --no-install-recommends install git python3 python3-pip && \
|
||||||
pip3 install paramiko gitpython
|
pip install --no-cache-dir paramiko gitpython
|
||||||
|
|
||||||
# Copy the script into the container
|
# Copy the script into the container
|
||||||
COPY app.py /app/app.py
|
COPY app.py /app/app.py
|
||||||
|
|
Loading…
Reference in a new issue