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
Torma Kristóf 50dec05e6b
Some checks reported errors
continuous-integration/drone/pr Build was killed
continuous-integration/drone/push Build was killed
tests done
2020-03-30 19:33:09 +02:00

10 lines
121 B
Docker

FROM python:3.8
WORKDIR /app
COPY . ./
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3", "app.py"]