Update hugo/Dockerfile, hugo/hugo.sh, hugo/Makefile, .gitlab-ci.yml files

Deleted borg/Dockerfile, borg/Makefile, borg/version, dendrite/Dockerfile, dendrite/Makefile, dendrite/entrypoint.sh, dendrite/version, minio/Dockerfile, minio/Makefile, minio/version, restic/Dockerfile, restic/Makefile, restic/version, watchdog/Dockerfile, watchdog/Makefile, watchdog/version files
This commit is contained in:
2021-05-08 11:01:13 +00:00
parent 7c429a2fc9
commit 2f83b43b23
20 changed files with 78 additions and 205 deletions

12
hugo/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
ARG DEBIAN_VERSION=20210408
ARG HUGO_VERSION
FROM docker.io/debian:bullseye-${DEBIAN_VERSION}-slim as builder
RUN apt-get update && apt-get install -y --no-install-recommends \
rsync \
openssh-client \
wget \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
COPY hugo.sh /root/hugo.sh
RUN chmod +x /root/hugo.sh && /root/hugo.sh