Skip to content

Commit

Permalink
dockerfile and requirementt (not tested)
Browse files Browse the repository at this point in the history
Prelim dockerfile and requirements for build testing; not tested at
all, just saved to transfer from machine to machine.
  • Loading branch information
craigsteffen committed Jul 17, 2024
1 parent b10e84e commit 0977e5f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions downloader/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM python:3.11

# environemnt variables
ENV RABBITMQ_URI="amqp://guest:guest@localhost:5672/%2F" \
PREFIX="" \
CDR_TOKEN="" \
MAX_SIZE=300

WORKDIR /src

COPY requirements.txt /src/
RUN pip install -r /src/requirements.txt

COPY . /src/

CMD python CM_B_downloader.py
2 changes: 2 additions & 0 deletions downloader/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requests
pika

0 comments on commit 0977e5f

Please sign in to comment.