Initial commit
Some checks failed
Update Docker Hub Description / dockerHubDescription (push) Successful in 14s
Docker Image CI / build_docker_images (push) Failing after 11m15s

This commit is contained in:
2025-11-11 16:53:13 +01:00
committed by GianLuca Vagnuzzi
commit 3744d82678
9 changed files with 961 additions and 0 deletions

27
Dockerfile Normal file
View File

@@ -0,0 +1,27 @@
# https://hub.docker.com/_/alpine/tags
FROM alpine:3.22.2
# https://pkgs.alpinelinux.org/packages?name=samba&branch=v3.22&repo=&arch=x86_64&origin=&flagged=&maintainer=
ENV sambaV="samba=~4.21.4-r4"
LABEL org.opencontainers.image.authors="rardcode <sak37564@ik.me>"
LABEL Description="Chrony server based on Alpine."
ENV APP_NAME="sambafs"
RUN set -xe && \
: "---------- ESSENTIAL packages INSTALLATION ----------" && \
apk update --no-cache && \
apk upgrade --available && \
apk add bash
RUN set -xe && \
: "---------- SPECIFIC packages INSTALLATION ----------" && \
apk update --no-cache && \
apk add --upgrade samba-common-tools && \
apk add --upgrade ${sambaV}
ADD rootfs /
ENTRYPOINT ["/entrypoint.sh"]