Skip to content

Commit c329601

Browse files
committedAug 1, 2024
feat: publish
1 parent dcca1c6 commit c329601

File tree

106 files changed

+25799
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+25799
-0
lines changed
 

‎.devcontainer/Dockerfile

+23
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

‎.devcontainer/devcontainer.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
3+
{
4+
"name": "Debian",
5+
"build": {
6+
"dockerfile": "Dockerfile"
7+
}
8+
9+
// Features to add to the dev container. More info: https://containers.dev/features.
10+
// "features": {},
11+
12+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
13+
// "forwardPorts": [],
14+
15+
// Configure tool-specific properties.
16+
// "customizations": {},
17+
18+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
19+
// "remoteUser": "root"
20+
}

0 commit comments

Comments
 (0)
Please sign in to comment.