File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change 1
- # # syntax=docker/dockerfile:1.4
2
- # FROM golang:1.24-alpine AS builder
3
- # ENV CGO_ENABLED=0
4
- # WORKDIR /backend
5
- # COPY backend/go.* .
6
- # RUN --mount=type=cache,target=/go/pkg/mod \
7
- # --mount=type=cache,target=/root/.cache/go-build \
8
- # go mod download
9
- # COPY backend/. .
10
- # RUN --mount=type=cache,target=/go/pkg/mod \
11
- # --mount=type=cache,target=/root/.cache/go-build \
12
- # go build -trimpath -ldflags="-s -w" -o bin/service
1
+ # syntax=docker/dockerfile:1.4
13
2
14
3
FROM --platform=$BUILDPLATFORM node:23-alpine3.20 AS client-builder
15
4
WORKDIR /ui
@@ -34,7 +23,6 @@ LABEL org.opencontainers.image.title="Docker MCP Toolkit" \
34
23
com.docker.extension.categories="utility-tools" \
35
24
com.docker.extension.changelog="Added MCP catalog"
36
25
37
- # COPY --from=builder /backend/bin/service /
38
26
COPY docker-compose.yaml .
39
27
COPY metadata.json .
40
28
COPY extension-icon.svg /extension-icon.svg
@@ -43,6 +31,3 @@ COPY host-binary/dist/darwin-${TARGETARCH}/host-binary /darwin/host-binary
43
31
COPY host-binary/dist/linux-${TARGETARCH}/host-binary /linux/host-binary
44
32
COPY --from=client-builder /ui/build ui
45
33
COPY ui/static-assets ui/static-assets
46
- # COPY data /data
47
-
48
- # CMD ["/service", "-socket", "/run/guest-services/backend.sock"]
You can’t perform that action at this time.
0 commit comments