Delete Dockerfile

This commit is contained in:
2024-10-29 07:40:28 -04:00
committed by GitHub
parent eab6730372
commit 24b8aa1868
-12
View File
@@ -1,12 +0,0 @@
FROM python:3.12.0
RUN apt-get update -y && apt-get upgrade -y
RUN pip install --upgrade pip
COPY requirements.txt /src/requirements.txt
WORKDIR /src
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "build.py"]