This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
producer/Dockerfile

12 lines
147 B
Docker
Raw Permalink Normal View History

2020-03-30 19:33:09 +02:00
FROM python:3.8
2020-03-09 16:50:22 +01:00
WORKDIR /app
2020-04-17 16:35:42 +02:00
COPY requirements.txt ./
2020-03-09 16:50:22 +01:00
2020-03-09 17:40:59 +01:00
RUN pip3 install --no-cache-dir -r requirements.txt
2020-04-17 16:35:42 +02:00
COPY . ./
2020-03-29 16:26:16 +02:00
CMD ["python3", "app.py"]