-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dockerfile and requirementt (not tested)
Prelim dockerfile and requirements for build testing; not tested at all, just saved to transfer from machine to machine.
- Loading branch information
1 parent
b10e84e
commit 0977e5f
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
requests | ||
pika |