We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 515de72 commit e94dac8Copy full SHA for e94dac8
.devcontainer/Dockerfile
@@ -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