Skip to content

Commit 48f5ade

Browse files
authored
fix: remove UI from docker build (#19425)
1 parent c24675f commit 48f5ade

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

cmd/loki/Dockerfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
ARG GO_VERSION=1.24
22

3-
# UI build stage
4-
FROM node:22-alpine AS ui-builder
5-
RUN apk add --no-cache make
6-
COPY . /src/loki
7-
WORKDIR /src/loki
8-
RUN make -C pkg/ui/frontend build
9-
103
# Go build stage
114
FROM golang:${GO_VERSION} AS build
125
ARG IMAGE_TAG
136
COPY . /src/loki
14-
COPY --from=ui-builder /src/loki/pkg/ui/frontend/dist /src/loki/pkg/ui/frontend/dist
157
WORKDIR /src/loki
168
RUN make clean && make BUILD_IN_CONTAINER=false IMAGE_TAG=${IMAGE_TAG} loki
179

0 commit comments

Comments
 (0)