Add docker support
- Allow setup script to get credentials from flags - Add Dockerfile and docker_entrypoint - Edit README for forked version
This commit is contained in:
parent
9ae33644e5
commit
9782f0321f
5 changed files with 78 additions and 58 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM python:3.7-bullseye
|
||||
|
||||
ADD . /app
|
||||
WORKDIR /app
|
||||
|
||||
RUN python3 setup.py install; \
|
||||
chmod +x docker_entrypoint.sh; \
|
||||
mkdir -p /data /root/.config; \
|
||||
rm -rf docke.yml
|
||||
|
||||
WORKDIR /data
|
||||
|
||||
CMD ["/app/docker_entrypoint.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue