diff --git a/Dockerfile b/Dockerfile index f6ac22f6..1fe5f380 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,14 +19,12 @@ WORKDIR /app RUN addgroup -g 1000 radicale \ && adduser radicale --home /var/lib/radicale --system --uid 1000 --disabled-password -G radicale \ - && apk add --no-cache ca-certificates openssl + && apk add --no-cache ca-certificates openssl curl COPY --chown=radicale:radicale --from=builder /app/venv /app # Persistent storage for data VOLUME /var/lib/radicale -# TCP port of Radicale -EXPOSE 5232 # Run Radicale ENTRYPOINT [ "/app/bin/python", "/app/bin/radicale"] CMD ["--hosts", "0.0.0.0:5232,[::]:5232"]