Spaces:
Running
Running
File size: 163 Bytes
ba2f5d6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# syntax=docker/dockerfile:1
FROM python:3.10-bullseye
EXPOSE 7865
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
CMD ["python3", "infer-web.py"] |