diff options
| author | Joe Carstairs <me@joeac.net> | 2026-03-22 08:16:26 +0000 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-03-22 08:16:26 +0000 |
| commit | 1a59baaacca7a61bac044b4423b8af4a1b2af9fe (patch) | |
| tree | 86aa4122909b7d025cfb5f6f9bda5e3f4bc10116 /website | |
| parent | 8ad2307fb74813bc7b31708f139e081e50546fa8 (diff) | |
apk add git for npm install in website/Dockerfile
Diffstat (limited to 'website')
| -rw-r--r-- | website/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/Dockerfile b/website/Dockerfile index 1d8b139..cd4a80c 100644 --- a/website/Dockerfile +++ b/website/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-alpine3.23 AS runtime WORKDIR /app COPY package.json package-lock.json ./ -RUN npm install +RUN apk add --no-cache git && npm install && apk del git COPY astro.config.mjs ./ COPY db ./db/ |
