|
@@ -0,0 +1,27 @@
|
|
1
|
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
2
|
+// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
|
|
3
|
+{
|
|
4
|
+ "name": "Ubuntu",
|
|
5
|
+ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
6
|
+ "image": "mcr.microsoft.com/devcontainers/base:noble",
|
|
7
|
+ "features": {
|
|
8
|
+ "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
|
|
9
|
+ "ghcr.io/prulloac/devcontainer-features/latex:1": {
|
|
10
|
+ "packages": "pgf,moderncv,moderntimeline,emoji,luatexbase,fontspec"
|
|
11
|
+ },
|
|
12
|
+ "./features/local": {}
|
|
13
|
+ },
|
|
14
|
+
|
|
15
|
+ "mounts": [
|
|
16
|
+ "source=${localEnv:HOME}/.docker,target=/home/vscode/.docker,type=bind"
|
|
17
|
+ ],
|
|
18
|
+
|
|
19
|
+ "customizations": {
|
|
20
|
+ "vscode": {
|
|
21
|
+ "settings": {
|
|
22
|
+ },
|
|
23
|
+ "extensions": [
|
|
24
|
+ ]
|
|
25
|
+ }
|
|
26
|
+ }
|
|
27
|
+}
|