mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-09-13 15:47:08 +00:00
16 lines
324 B
Docker
16 lines
324 B
Docker
ARG BUILD_FROM
|
|
FROM ${BUILD_FROM}
|
|
|
|
# ---------- install NodeJS ----------
|
|
RUN apk add --no-cache nodejs npm python3 make g++
|
|
|
|
# ---------- copy source -------------
|
|
WORKDIR /usr/src/app
|
|
COPY package.json tsconfig.json ./
|
|
RUN npm install
|
|
COPY src ./src
|
|
RUN npm run build
|
|
|
|
# ---------- copy s6 service files ---
|
|
COPY rootfs /
|