Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fc1943s committed Apr 29, 2024
1 parent cff71d4 commit d692690
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM mcr.microsoft.com/vscode/devcontainers/universal

USER root

RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-recommends \
powershell

USER codespace
19 changes: 19 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"docker-in-docker": "latest"
},
"hostRequirements": {
"cpus": 4,
"memory": "16gb",
"storage": "64gb"
},
"postCreateCommand": "pwd && rustc --version && echo postCreateCommand",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
]
}

0 comments on commit d692690

Please sign in to comment.