Some dependencies were missing to successfully build the docker image.
This commit is contained in:
parent
22af5f80eb
commit
01f450fca9
|
@ -11,9 +11,9 @@ VOLUME /app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone; \
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone; \
|
||||||
/bin/sh -c 'apk update && apk add --no-cache gcc musl-dev python3-dev py3-pip libffi-dev openssl-dev cargo zlib-dev jpeg-dev speex ffmpeg htop; \
|
/bin/sh -c 'apk update && apk add --no-cache gcc musl-dev python3-dev py3-wheel py3-pip py3-olm libffi-dev openssl-dev cargo zlib-dev jpeg-dev libmagic speex ffmpeg htop; \
|
||||||
pip install update pip && pip install -r requirements.txt ; \
|
pip install update pip && pip install -r requirements.txt ; \
|
||||||
apk del zlib-dev jpeg-dev gcc musl-dev python3-dev libffi-dev openssl-dev cargo;'
|
apk del zlib-dev jpeg-dev gcc musl-dev python3-dev openssl-dev cargo;'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
fritzconnection
|
fritzconnection
|
||||||
python-dotenv
|
python-dotenv
|
||||||
xmltodict
|
xmltodict
|
||||||
|
@ -7,12 +8,15 @@ pydub
|
||||||
# for matrix-commander
|
# for matrix-commander
|
||||||
|
|
||||||
aiohttp
|
aiohttp
|
||||||
aiofiles
|
aiofiles #<0.5.0,>=0.4.0
|
||||||
argparse
|
argparse
|
||||||
asyncio
|
asyncio
|
||||||
|
atomicwrites
|
||||||
|
cachetools
|
||||||
datetime
|
datetime
|
||||||
markdown
|
markdown
|
||||||
matrix-nio
|
matrix-nio # [e2e]>=0.18.3
|
||||||
|
peewee
|
||||||
Pillow
|
Pillow
|
||||||
python_magic
|
python_magic
|
||||||
uuid
|
uuid
|
||||||
|
|
Loading…
Reference in New Issue