1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-08-10 22:31:47 +02:00
1256: Radicale: Use pip package instead of alpine repo r=mergify[bot] a=Nebukadneza

Required to fix failing builds caused by [alpine]upstream package rebuild against different python version

## What type of PR?
bug-fix

## What does this PR do?
Use pip package instead of alpine repo to build radicale

### Related issue(s)
closes #1255 

## Prerequistes
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

-  In case of feature or enhancement: documentation updated accordingly
- [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/guide.html#changelog) entry file.


Co-authored-by: Dario Ernst <dario@kanojo.de>
This commit is contained in:
bors[bot]
2019-11-17 18:41:02 +00:00
committed by GitHub
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