Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# [Choice] Debian / Ubuntu version: debian-10, debian-9, ubuntu-20.04, ubuntu-18.04
# See https://github.com/microsoft/vscode-dev-containers/tree/master/containers/debian
# [Choice] Debian / Ubuntu version: debian-12, debian-11, ubuntu-24.04, ubuntu-22.04
# See https://github.com/devcontainers/images/tree/main/src/base-debian
# and https://github.com/devcontainers/images/tree/main/src/base-ubuntu
ARG VARIANT=debian-12
FROM mcr.microsoft.com/vscode/devcontainers/base:${VARIANT}

Expand Down Expand Up @@ -48,7 +49,7 @@ RUN /bin/bash /tmp/node.sh 20.x
COPY scripts/docker-client.sh /tmp/
RUN /bin/bash /tmp/docker-client.sh

#Add user to docker group
# Add user to docker group
RUN sudo groupadd docker && sudo usermod -aG docker $USERNAME && newgrp docker

# act
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/go
// For format details, see https://aka.ms/vscode-remote/devcontainer.json
// or this file's README at: https://github.com/devcontainers/images/tree/main/src/go
{
"name": "devcontainers-ci",
"dockerFile": "Dockerfile",
Expand Down