ds / Dockerfile
yangtb24's picture
Update Dockerfile
44a54d3 verified
raw
history blame contribute delete
173 Bytes
FROM python:3.12-rc-slim-buster
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
EXPOSE 7860
CMD ["python", "app.py"]