Dockerfile cleanup user creation

This commit is contained in:
David Personette 2016-06-03 12:05:33 -04:00
parent 5d29bb0f64
commit 176770244b

View File

@ -6,9 +6,7 @@ RUN export DEBIAN_FRONTEND='noninteractive' && \
apt-get update -qq && \ apt-get update -qq && \
apt-get install -qqy --no-install-recommends samba \ apt-get install -qqy --no-install-recommends samba \
$(apt-get -s dist-upgrade|awk '/^Inst.*ecurity/ {print $2}') &&\ $(apt-get -s dist-upgrade|awk '/^Inst.*ecurity/ {print $2}') &&\
apt-get clean && \ useradd -c 'Samba User' -d /tmp -M -r smbuser && \
rm -rf /var/lib/apt/lists/* /tmp/* && \
useradd smbuser -M && \
sed -i 's|^\( log file = \).*|\1/dev/stdout|' /etc/samba/smb.conf && \ sed -i 's|^\( log file = \).*|\1/dev/stdout|' /etc/samba/smb.conf && \
sed -i 's|^\( unix password sync = \).*|\1no|' /etc/samba/smb.conf && \ sed -i 's|^\( unix password sync = \).*|\1no|' /etc/samba/smb.conf && \
sed -i '/Share Definitions/,$d' /etc/samba/smb.conf && \ sed -i '/Share Definitions/,$d' /etc/samba/smb.conf && \
@ -22,7 +20,9 @@ RUN export DEBIAN_FRONTEND='noninteractive' && \
echo ' printing = bsd' >>/etc/samba/smb.conf && \ echo ' printing = bsd' >>/etc/samba/smb.conf && \
echo ' printcap name = /dev/null' >>/etc/samba/smb.conf && \ echo ' printcap name = /dev/null' >>/etc/samba/smb.conf && \
echo ' disable spoolss = yes' >>/etc/samba/smb.conf && \ echo ' disable spoolss = yes' >>/etc/samba/smb.conf && \
echo '' >>/etc/samba/smb.conf echo '' >>/etc/samba/smb.conf && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/*
COPY samba.sh /usr/bin/ COPY samba.sh /usr/bin/
VOLUME ["/etc/samba"] VOLUME ["/etc/samba"]