Companion repository for the article "Build multi-architecture container images with Kubernetes, Tekton and Buildah"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
295 B

FROM quay.io/centos/centos:stream9
RUN dnf install -y samba samba-client cifs-utils shadow-utils \
&& dnf clean all
VOLUME /srv/samba
EXPOSE 445
RUN groupadd -g 1000 itix \
&& useradd -d /home/nicolas -g itix -u 1000 -m nicolas
ADD entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ ]