File tree Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Expand file tree Collapse file tree 2 files changed +16
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Ref: https://hub.docker.com/r/microsoft/devcontainers-universal
2
+ FROM mcr.microsoft.com/devcontainers/universal:2
3
+
4
+ # Keep in sync with Brewfile.
5
+ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
6
+ && apt-get -y install octave z3
Original file line number Diff line number Diff line change 1
1
{
2
- "features" : {
3
- "ghcr.io/devcontainers-extra/features/apt-get-packages:1" : {
4
- "version" : " latest" ,
5
- "packages" : " octave z3" // Keep in sync with Brewfile
6
- }
7
- },
2
+ "build" : {
3
+ "dockerfile" : " Dockerfile"
4
+ },
5
+ // "features": {
6
+ // "ghcr.io/devcontainers-extra/features/apt-get-packages:1": {
7
+ // // NOTE moved to Dockerfile to utilize docker build cache.
8
+ // "version": "latest",
9
+ // "packages": "octave z3" // Keep in sync with Brewfile
10
+ // }
11
+ // },
8
12
"postCreateCommand" : " bash scripts/devcontainer_postCreateCommand.sh" ,
9
13
"customizations" : {
10
14
"vscode" : {
You can’t perform that action at this time.
0 commit comments