10 lines
286 B
Docker
10 lines
286 B
Docker
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"]
|