We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eb26ee0 + 3a1e29f commit a76c351Copy full SHA for a76c351
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ghcr.io/linuxserver/baseimage-debian:bookworm as base
+FROM ghcr.io/linuxserver/baseimage-debian:bookworm AS base
2
3
ENV TZ=Etc/GMT
4
ENV NODE_VERSION 20.11.1
@@ -57,7 +57,7 @@ COPY docker/root /
57
58
WORKDIR /app
59
60
-FROM base as build
+FROM base AS build
61
62
COPY --chown=abc:abc package*.json tsconfig.json ./
63
COPY --chown=abc:abc patches ./patches
@@ -86,7 +86,7 @@ ENV NODE_ENV=production
86
87
RUN npm run docs:install && npm run build && rm -rf node_modules && rm -rf docsite/node_modules
88
89
-FROM base as app
+FROM base AS app
90
91
COPY --chown=abc:abc *.json *.js *.ts index.html ./
92
0 commit comments