Skip to content

Commit e94dac8

Browse files
fix(mcp): correct code tool API endpoint
1 parent 515de72 commit e94dac8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.devcontainer/Dockerfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# syntax=docker/dockerfile:1
2+
FROM debian:bookworm-slim
3+
4+
RUN apt-get update && apt-get install -y \
5+
libxkbcommon0 \
6+
ca-certificates \
7+
git \
8+
golang \
9+
unzip \
10+
libc++1 \
11+
vim \
12+
&& apt-get clean autoclean
13+
14+
# Ensure UTF-8 encoding
15+
ENV LANG=C.UTF-8
16+
ENV LC_ALL=C.UTF-8
17+
18+
ENV GOPATH=/go
19+
ENV PATH=$GOPATH/bin:$PATH
20+
21+
WORKDIR /workspace
22+
23+
COPY . /workspace

0 commit comments

Comments
 (0)