mirror of
https://github.com/s83/docker-brudi-rclone.git
synced 2024-11-26 05:55:29 +00:00
48 lines
1.4 KiB
Docker
48 lines
1.4 KiB
Docker
# Add build-base package for compiling source code
|
|
RUN apk add --no-cache --upgrade build-base
|
|
|
|
# Clone the brudi source code from GitHub
|
|
RUN git clone https://github.com/mittwald/brudi.git /tmp/brudi
|
|
|
|
# Build brudi from source for arm architecture
|
|
WORKDIR /tmp/brudi
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=arm go build -o /usr/local/bin/brudi
|
|
|
|
# Clean up the temporary directory
|
|
RUN rm -rf /tmp/brudi
|
|
|
|
FROM postgres:16.2-alpine3.19
|
|
|
|
LABEL maintainer="s83 <https://github.com/s83>"
|
|
|
|
ENV BRUDI_USER="brudi" \
|
|
BRUDI_GID="1000" \
|
|
BRUDI_UID="1000"
|
|
|
|
COPY --from=quay.io/mittwald/brudi:0.1 /usr/local/bin/brudi /usr/local/bin/brudi
|
|
COPY --from=restic/restic:0.16.4 /usr/bin/restic /usr/local/bin/restic
|
|
COPY --from=redis:7.2.4-alpine3.19 /usr/local/bin/redis-cli /usr/local/bin/redis-cli
|
|
|
|
RUN apk add --no-cache --upgrade \
|
|
mysql-client \
|
|
rclone \
|
|
curl \
|
|
&& \
|
|
addgroup \
|
|
-S "${BRUDI_USER}" \
|
|
-g "${BRUDI_GID}" \
|
|
&& \
|
|
adduser \
|
|
-u "${BRUDI_UID}" \
|
|
-S \
|
|
-G "${BRUDI_USER}" \
|
|
"${BRUDI_USER}" \
|
|
&& mkdir -p /home/${BRUDI_USER}/.config/rclone \
|
|
&& touch /home/${BRUDI_USER}/.config/rclone/rclone.conf
|
|
|
|
USER ${BRUDI_USER}
|
|
WORKDIR /home/${BRUDI_USER}
|
|
|
|
ENTRYPOINT ["brudi"]
|
|
|