Files
addons/samba/Dockerfile
Franck Nijhof 6ce3006a72 samba: Collection of small improvements (#913)
* samba: Move data files into data folder

* samba: Prettier YAML & JSON files

* samba: Update add-on URL

* samba: Remove curl from Dockerfile, already in the base image
2019-12-19 13:18:05 +01:00

17 lines
225 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache \
samba-common-tools \
samba-server
# Copy data
COPY data/run.sh /
COPY data/smb.conf /etc/
CMD [ "/run.sh" ]