collection.dockerfile/centos7/filegw/Dockerfile

10 lines
286 B
Docker
Raw Normal View History

2022-06-16 21:12:30 +08:00
FROM centos:7
LABEL description="Smb file File gateway"
ENV container docker
RUN rm -f /etc/yum.repos.d/*.repo
COPY centos-vault.repo /etc/yum.repos.d/centos-vault.repo
RUN yum -y install samba4 samba4-client
COPY smb.conf /etc/samba/smb.conf
COPY run.sh /run.sh
ENTRYPOINT ["/run.sh"]