testingnewcode / Dockerfile
sksameermujahid's picture
Update Dockerfile
9928fc1 verified
raw
history blame
279 Bytes
FROM python:3.11-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./app.py /code/app.py
COPY ./templates /code/templates
COPY ./models /code/models
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]