signal-gateway-dockerized/receiver/Dockerfile

10 lines
157 B
Text
Raw Normal View History

2020-09-27 17:55:15 +02:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./receiver.py" ]