mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-17 13:58:19 +00:00
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:
12
hugo/Dockerfile
Normal file
12
hugo/Dockerfile
Normal 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
|
Reference in New Issue
Block a user