Files
addons/samba/Dockerfile
Pascal Vizeli dbe6648082 Update samba / fix minor bugs (#22)
* Update samba / fix minor bugs

* fix lint
2017-04-30 23:25:51 +02:00

17 lines
237 B
Docker

FROM %%BASE_IMAGE%%
# Add version
ENV VERSION %%VERSION%%
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache jq samba-server samba-common-tools
# Copy data
COPY run.sh /
COPY smb.conf /etc/
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]