mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 18:39:09 -07:00
22 lines
514 B
Docker
22 lines
514 B
Docker
FROM node:10-alpine
|
|
|
|
# Copy files
|
|
ADD . /app
|
|
RUN cp /app/data/configuration.yaml /app
|
|
RUN cp /app/docker/run.sh /app
|
|
RUN chmod +x /app/run.sh
|
|
WORKDIR /app
|
|
|
|
# Write .hash.json
|
|
ARG COMMIT
|
|
RUN echo "{\"hash\": \"$COMMIT\"}" > .hash.json
|
|
|
|
# Install dependencies
|
|
RUN apk add --update --no-cache tzdata && \
|
|
apk add --update --no-cache --virtual .buildtools make gcc g++ python linux-headers udev git && \
|
|
npm install --unsafe-perm --production && \
|
|
apk del .buildtools
|
|
|
|
# Entrypoint
|
|
ENTRYPOINT ["./run.sh"]
|