Readded tvhProxy folder

This commit is contained in:
root
2023-03-28 22:47:27 +02:00
parent cad2476dad
commit 2282a3e066
11 changed files with 693 additions and 0 deletions

14
tvhProxy/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3-slim
# Sample from https://hub.docker.com/_/python
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5004
CMD [ "python3", "./tvhProxy.py" ]