Skip to content

Commit

Permalink
Add Linux Ubuntu 23.04 container
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Sep 24, 2024
1 parent c86e82b commit fbd5fe1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Get the base Ubuntu image
FROM ubuntu:23.04

ENV TZ=Europe/Kiev
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# Update apps on the base image
RUN apt -y update && apt install -y

# Install the Clang compiler
RUN apt -y install git g++ cmake
18 changes: 18 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "C++",
"build": {
"dockerfile": "Dockerfile"
},

// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
"settings": {},
"extensions": [
"streetsidesoftware.code-spell-checker"
]
}
}

}

0 comments on commit fbd5fe1

Please sign in to comment.