diff --git a/Dockerfile b/Dockerfile index caf8605..35bb658 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,13 @@ FROM python:3.10-slim-bullseye WORKDIR /app +RUN apt-get update && \ + apt-get install -y --no-install-recommends gcc + COPY requirements.txt . RUN pip3 install -r requirements.txt -COPY . . +COPY main.py . -ENTRYPOINT [ "python3", "main.py"] +ENTRYPOINT ["python3", "main.py"]