it can now run in a docker container. YEEEY
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM python:3.12
|
||||
|
||||
WORKDIR = /src
|
||||
|
||||
COPY python/src/ .
|
||||
COPY python/requierements.txt .
|
||||
COPY python/docker_entrypoint.sh /
|
||||
|
||||
RUN mkdir data
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y bluez sudo
|
||||
|
||||
RUN pip3.12 install -r requierements.txt && rm -f requierements.txt
|
||||
|
||||
ENTRYPOINT sh /docker_entrypoint.sh
|
||||
Reference in New Issue
Block a user