sculinebot2025 / Dockerfile
3v324v23's picture
test
b859a54
raw
history blame
226 Bytes
FROM python:3.12.2
WORKDIR /code
COPY ./test_requirements.txt /code/test_requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/test_requirements.txt
COPY . .
CMD ["gunicorn","-b", "0.0.0.0:7860", "test:app"]