add ability to containerize with Docker (add Dockerfile) (#240)
Co-authored-by: Sebastian Savu <sebastian.savu@bidfx.com>
This commit is contained in:
parent
b5b9af0255
commit
d43c1d3cdd
13
Dockerfile
Normal file
13
Dockerfile
Normal 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"]
|
Loading…
Reference in New Issue
Block a user