mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* 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
17 lines
225 B
Docker
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" ]
|