Files
sambafs/Dockerfile
GianLuca Vagnuzzi 4919b40fdc
All checks were successful
Update Docker Hub Description / dockerHubDescription (push) Successful in 12s
Docker Image CI / build_docker_images (push) Successful in 13m21s
Updated samba to 4.21.9-r1
2025-11-12 14:27:56 +01:00

28 lines
732 B
Docker

# 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.9-r1"
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"]