1
0
mirror of synced 2024-11-23 23:21:03 +01:00

add ability to containerize with Docker (add Dockerfile) (#240)

Co-authored-by: Sebastian Savu <sebastian.savu@bidfx.com>
This commit is contained in:
Sebastian Gabriel Savu 2023-05-07 06:32:16 +01:00 committed by GitHub
parent b5b9af0255
commit d43c1d3cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
Dockerfile Normal file
View File

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