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