Compare commits

..

No commits in common. "6652def3515fa56710ae5dfc093bbd16470e69de" and "01f450fca90965a9de6b2d1734b98401ad95f286" have entirely different histories.

2 changed files with 5 additions and 13 deletions

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM python:alpine
FROM alpine:latest
ENV TZ=Europe/Berlin
ENV UNBUFFERED=1
@ -11,17 +11,9 @@ VOLUME /app
COPY . .
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone; \
apk --no-cache update && apk add --no-cache --virtual .build-deps \
gcc \
cargo \
libffi-dev \
openssl-dev \
zlib-dev \
jpeg-dev ; \
apk add --no-cache ffmpeg speex; \
pip install --no-cache-dir upgrade pip; \
pip install --no-cache-dir -r requirements.txt ; \
apk del --no-cache .build-deps;
/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 ; \
apk del zlib-dev jpeg-dev gcc musl-dev python3-dev openssl-dev cargo;'

View File

@ -7,7 +7,7 @@ services:
context: ../.
dockerfile: ./docker/Dockerfile
working_dir: /app
# entrypoint: /bin/sh -c "export UNBUFFERED=1 && python3 -u ./fritzab2matrix.py"
entrypoint: /bin/sh -c "export UNBUFFERED=1 && python3 -u ./fritzab2matrix.py"
volumes:
- ../.:/app