mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-03 02:21:38 +00:00
b6186623f0
* Remove `deviceGroupMembership` * Fix controller.ts * Remove `legacy_api` logic from non-legacy extensions. * Fix network map coverage. * Remove all `legacy` extensions. * Remove `legacy_availability_payload`, `legacy_api`. Remove legacy from configure. * Fix prettier. * Remove some leftovers * Renamed `updateAvailable` to `update_available` * Remove emitPublishAvailability * Remove `configuration.yaml` * Switch to pnpm * Remove direct mqtt-packet dependency. * fix pretty * fix `getDependencyVersion` * fix pnpm publish * fix(ignore): fix pnpm publish * Remove deprecated bridge `config/*` * Improve update script * Improve update.sh --------- Co-authored-by: Nerivec <62446222+Nerivec@users.noreply.github.com>
44 lines
1.4 KiB
Docker
44 lines
1.4 KiB
Docker
FROM alpine:3.18.4 as base
|
|
|
|
WORKDIR /app
|
|
RUN apk add --no-cache tzdata eudev tini nodejs
|
|
|
|
# Dependencies and build
|
|
FROM base as dependencies_and_build
|
|
|
|
COPY package*.json tsconfig.json index.js ./
|
|
COPY lib ./lib
|
|
|
|
RUN apk add make gcc g++ python3 linux-headers git npm && \
|
|
npm install -g pnpm && \
|
|
pnpm install --frozen-lockfile --no-optional && \
|
|
# Serialport needs to be rebuild for Alpine https://serialport.io/docs/9.x.x/guide-installation#alpine-linux
|
|
pnpm rebuild
|
|
|
|
# Release
|
|
FROM base as release
|
|
|
|
LABEL org.opencontainers.image.authors="Koen Kanters"
|
|
LABEL org.opencontainers.image.title="zigbee2mqtt"
|
|
LABEL org.opencontainers.image.description="Zigbee to MQTT bridge using Zigbee-herdsman"
|
|
LABEL org.opencontainers.image.url="https://github.com/Koenkk/zigbee2mqtt"
|
|
LABEL org.opencontainers.image.documentation="https://www.zigbee2mqtt.io/"
|
|
LABEL org.opencontainers.image.source="https://github.com/Koenkk/zigbee2mqtt"
|
|
|
|
COPY --from=dependencies_and_build /app/node_modules ./node_modules
|
|
COPY dist ./dist
|
|
COPY package.json LICENSE index.js data/configuration.yaml data/configuration.example.yaml ./
|
|
|
|
COPY docker/docker-entrypoint.sh /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
|
|
RUN mkdir /app/data
|
|
|
|
ARG COMMIT
|
|
RUN echo "$COMMIT" > dist/.hash
|
|
|
|
ENV NODE_ENV production
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
CMD [ "/sbin/tini", "--", "node", "index.js"]
|