diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index f6d86305..00000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM python:3.11-slim - -RUN apt-get update && apt-get install -y build-essential curl -RUN pip install pipenv - -WORKDIR /app -EXPOSE 5050 -CMD ["python", "run.py"] - -HEALTHCHECK --interval=1m30s --timeout=10s --retries=3 \ - CMD curl -f http://localhost:5050/info || exit 1 - -COPY . /app -RUN pipenv install --deploy --system