mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
86ce54d69c
Install npm deps in separate docker layer
20 lines
513 B
Docker
20 lines
513 B
Docker
FROM docker.io/node:alpine as builder
|
|
RUN apk add --no-cache git python3 build-base
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package.json and yarn.lock and install dependencies first to speed up subsequent builds
|
|
COPY package.json yarn.lock /app/
|
|
RUN yarn install
|
|
|
|
COPY . /app
|
|
RUN yarn build
|
|
|
|
FROM docker.io/nginx:alpine
|
|
|
|
# Copy the dynamic config script
|
|
COPY ./docker/dynamic-config.sh /docker-entrypoint.d/99-dynamic-config.sh
|
|
|
|
# Copy the built app from the first build stage
|
|
COPY --from=builder /app/target /usr/share/nginx/html
|