signal-gateway-dockerized/sender/Dockerfile

10 lines
155 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", "./sender.py" ]