Skip to content

Commit 25b0137

Browse files
chore(internal): fix devcontainers setup (#236)
1 parent 7ad3660 commit 25b0137

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.devcontainer/Dockerfile

+7-8
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,18 @@ RUN apt-get update && apt-get install -y \
55
libxkbcommon0 \
66
ca-certificates \
77
git \
8-
golang \
98
unzip \
109
libc++1 \
1110
vim \
11+
curl \
12+
procps \
1213
&& apt-get clean autoclean
1314

15+
RUN curl -OL https://go.dev/dl/go1.24.0.linux-amd64.tar.gz && \
16+
tar -C /usr/local -xzvf go1.24.0.linux-amd64.tar.gz && \
17+
rm go1.24.0.linux-amd64.tar.gz
18+
ENV PATH="$PATH:/usr/local/go/bin"
19+
1420
# Ensure UTF-8 encoding
1521
ENV LANG=C.UTF-8
1622
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)