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