Readding tvhproxy

This commit is contained in:
Joan
2024-03-19 17:41:03 +01:00
parent 14f51a51b8
commit c727092ccd
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" ]