1
0
mirror of synced 2025-01-19 17:28:42 +01:00

13 lines
163 B
Docker
Raw Normal View History

# 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"]