mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
* Update branch of add-ons with armv7 * update configurator * Fix docker file * Update docker files * fix image * Update * certbot
16 lines
210 B
Docker
16 lines
210 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Add env
|
|
ENV LANG C.UTF-8
|
|
|
|
# Setup base
|
|
RUN apk add --no-cache \
|
|
curl samba-server samba-common-tools
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY smb.conf /etc/
|
|
|
|
CMD [ "/run.sh" ]
|