Skip to content

Commit

Permalink
Move Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
winstonsmith1897 committed Aug 21, 2023
1 parent 8fdcf97 commit bf8122b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM python:3.8

COPY requirements.txt /
RUN pip install --no-cache-dir -r /requirements.txt

ADD application-manager/*.py /

ENTRYPOINT ["/usr/local/bin/python3", "/catch_topic.py"]


3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
docker
websocket-client
requests

0 comments on commit bf8122b

Please sign in to comment.