Update keycloak/Dockerfile, minio/Dockerfile, restic/Dockerfile, watchdog/Dockerfile, dendrite/Dockerfile, dendrite/Makefile files

This commit is contained in:
Adrien le Maire 2021-01-19 10:41:57 +00:00
parent 1f0c65f43b
commit 71fd98cb0b
6 changed files with 7 additions and 7 deletions

View File

@ -3,9 +3,9 @@ FROM golang:buster as builder
ARG DEBIAN_FRONTEND=noninteractive
COPY dendrite /dendrite
WORKDIR /dendrite
RUN ./build.sh
RUN rm -rf .git && ./build.sh
FROM debian:buster
FROM debian:buster-20210111-slim
COPY --from=builder /dendrite/bin/ /usr/local/bin/
COPY --from=builder /dendrite/dendrite-config.yaml /usr/local/share/

View File

@ -18,4 +18,4 @@ push: git-clone
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) .
git-clone:
git clone -b v${VERSION} https://github.com/matrix-org/dendrite.git
git clone -b v${VERSION} --depth 1 https://github.com/matrix-org/dendrite.git

View File

@ -1,4 +1,4 @@
FROM debian:buster-20201209-slim
FROM debian:buster-20210111-slim
ADD https://curl.haxx.se/ca/cacert.pem /etc/ssl/certs/cacert.pem
ENV CURL_CA_BUNDLE=/etc/ssl/certs/cacert.pem

View File

@ -1,4 +1,4 @@
FROM alpine:3.12.3
FROM alpine:3.13.0
ENV MINIO_ACCESS_KEY_FILE=access_key \
MINIO_SECRET_KEY_FILE=secret_key \

View File

@ -1,4 +1,4 @@
FROM alpine:3.12.3
FROM alpine:3.13.0
ARG VERSION
ARG TARGETARCH
ENV VERSION $VERSION

View File

@ -1,4 +1,4 @@
FROM debian:buster-20201209-slim
FROM debian:buster-20210111-slim
ARG DEBIAN_FRONTEND=noninteractive
ARG VERSION
RUN apt update -qq && \