1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-08-10 22:31:47 +02:00

Radicale: Use pip package instead of alpine repo

Required to fix failing builds caused by [alpine]upstream package rebuild against different python version
This commit is contained in:
Dario Ernst
2019-11-17 14:51:06 +01:00
parent 422a332b5b
commit b374072892
2 changed files with 3 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
ARG DISTRO=alpine:3.10 ARG DISTRO=alpine:3.10
FROM $DISTRO FROM $DISTRO
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ RUN apk add --no-cache curl bash python3 \
&& apk add --no-cache radicale@testing curl bash && pip3 install radicale
COPY radicale.conf /radicale.conf COPY radicale.conf /radicale.conf

View File

@@ -0,0 +1 @@
Use pip package for radicale to fix failing builds caused by [alpine]upstream package rebuild against different python version