15 lines
225 B
Docker
15 lines
225 B
Docker
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" ]
|