mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-15 02:54:19 +01:00
12 lines
164 B
Docker
12 lines
164 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Copy data
|
|
COPY run.sh /
|
|
COPY mosquitto.conf /etc/
|
|
COPY asoundrc /root/.asoundrc
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
ENTRYPOINT [ "/run.sh" ]
|