diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dc573d7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3 + +COPY . /app +WORKDIR /app + +RUN pip install -r requirements.txt +COPY + +CMD python ./src/consumer.py