ajouter les cloches dans l'image Docker
This commit is contained in:
parent
e67b5fb4b0
commit
91d941295c
2 changed files with 4 additions and 1 deletions
|
@ -16,6 +16,10 @@ WORKDIR /app
|
|||
RUN pip install --upgrade pip
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
# Copy Sounds
|
||||
ADD bell /app/bell
|
||||
|
||||
COPY *.py ./
|
||||
RUN python install.py
|
||||
|
||||
|
|
|
@ -21,5 +21,4 @@ docker rm breathaudio-backend
|
|||
# Ce programme sert à lancer le breathaudio-backend dans un docker localement pour tester
|
||||
docker run -p 8052:8052 --name breathaudio-backend --network host \
|
||||
--volume "${PWD}/tmp_sound":"/app/tmp_sound" \
|
||||
--volume "${PWD}/bell":"/app/bell" \
|
||||
local/breathaudio-backend
|
||||
|
|
Loading…
Reference in a new issue