Skip to content

Commit

Permalink
fix: add missing arg to installer layer (#714)
Browse files Browse the repository at this point in the history
  • Loading branch information
fgreinacher authored Jul 4, 2023
1 parent 5f9d8af commit 39d1b2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/studio/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG BASE_URL_PLACEHOLDER=189b303e-37a0-4f6f-8c0a-50333bc3c36e


FROM node:18-alpine AS base

FROM base AS builder
RUN apk add --no-cache libc6-compat
RUN apk update
Expand All @@ -15,6 +15,9 @@ RUN turbo prune --scope=@asyncapi/studio --docker

# Add lockfile and package.json's of isolated subworkspace
FROM base AS installer

ARG BASE_URL_PLACEHOLDER

RUN apk add --no-cache libc6-compat
RUN apk update
WORKDIR /app
Expand Down

0 comments on commit 39d1b2e

Please sign in to comment.