From 3b2ab9b45df2fa9aaf1c562f902a7b24e37f92a3 Mon Sep 17 00:00:00 2001 From: patha Date: Sat, 20 Jan 2024 14:12:21 +0100 Subject: [PATCH] Dockerfile korrigiert --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 40665bc..d075e24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM ubuntu:22.04.03 -RUN apt-get update -y && apt-get install -y python python-pip +FROM ubuntu:22.04 +RUN apt-get update -y && apt-get install -y python3-dev python3-pip WORKDIR /app COPY ./requirements.txt /app/requirements.txt COPY ./templates /app/templates RUN pip install -r requirements.txt COPY . /app -CMD [ "python","./app.py" ] \ No newline at end of file +CMD [ "python3","./app.py" ] \ No newline at end of file