mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
* rpc_shutdown: Prettier YAML files * rpc_shutdown: Move run.sh to data folder * rpc_shutdown: Documentation tweaks * rpc_shutdown: Update add-on URL & Description
14 lines
180 B
Docker
14 lines
180 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-common
|
|
|
|
# Copy data
|
|
COPY data/run.sh /
|
|
|
|
CMD [ "/run.sh" ]
|