mirror of https://github.com/o2sh/onefetch.git
Browse Source
* Add devcontainer/codespace config
* Fix devcontainer source
* Add note
* Install cmake to devcontainer
Required by libz-sys
* Run `apt update` first
* Run apt commands in sudo mode
* Use `-y` flag
🤦
* Exclude assets from VSCode search
pull/858/head
4 changed files with 23 additions and 0 deletions
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
# NOTE: see https://hub.docker.com/_/microsoft-vscode-devcontainers |
||||
ARG VARIANT="buster" |
||||
FROM mcr.microsoft.com/vscode/devcontainers/rust:1-${VARIANT} |
||||
RUN sudo apt update && sudo apt install -y cmake |
||||
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
{ |
||||
"name": "Rust", |
||||
"build": { |
||||
"dockerfile": "Dockerfile", |
||||
"args": { "VARIANT": "buster" } |
||||
}, |
||||
"extensions": ["EditorConfig.EditorConfig"], |
||||
"remoteUser": "vscode" |
||||
} |
||||
Loading…
Reference in new issue