buildx/hugo/Dockerfile
Adrien le Maire 2f83b43b23 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
2021-05-08 11:01:13 +00:00

13 lines
350 B
Docker

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