diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..49f62d5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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"] \ No newline at end of file