Skip to content

Commit 39d1b2e

Browse files
authored
fix: add missing arg to installer layer (#714)
1 parent 5f9d8af commit 39d1b2e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/studio/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG BASE_URL_PLACEHOLDER=189b303e-37a0-4f6f-8c0a-50333bc3c36e
33

44

55
FROM node:18-alpine AS base
6-
6+
77
FROM base AS builder
88
RUN apk add --no-cache libc6-compat
99
RUN apk update
@@ -15,6 +15,9 @@ RUN turbo prune --scope=@asyncapi/studio --docker
1515

1616
# Add lockfile and package.json's of isolated subworkspace
1717
FROM base AS installer
18+
19+
ARG BASE_URL_PLACEHOLDER
20+
1821
RUN apk add --no-cache libc6-compat
1922
RUN apk update
2023
WORKDIR /app

0 commit comments

Comments
 (0)