Skip to content

Commit c953122

Browse files
committed
add devcontainer configuration
1 parent 1b3067d commit c953122

File tree

3 files changed

+115
-282
lines changed

3 files changed

+115
-282
lines changed

.devcontainer/devcontainer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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:jammy",
7+
"features": {
8+
"ghcr.io/devcontainers/features/node:1": {},
9+
"ghcr.io/jungaretti/features/make:1": {},
10+
"ghcr.io/audacioustux/devcontainers/aws-sam-cli:1": {}
11+
},
12+
13+
// Features to add to the dev container. More info: https://containers.dev/features.
14+
// "features": {},
15+
16+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
17+
"forwardPorts": [8080, 5173]
18+
19+
// Use 'postCreateCommand' to run commands after the container is created.
20+
// "postCreateCommand": "uname -a",
21+
22+
// Configure tool-specific properties.
23+
// "customizations": {},
24+
25+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
26+
// "remoteUser": "root"
27+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"jwks-rsa": "^3.1.0",
5656
"moment": "^2.30.1",
5757
"moment-timezone": "^0.5.45",
58-
"pdfjs-dist": "^4.5.136",
58+
"pdfjs-dist": "^4.8.69",
5959
"pluralize": "^8.0.0",
6060
"react": "^18.3.1",
6161
"react-dom": "^18.3.1",
@@ -131,6 +131,6 @@
131131
"yarn-upgrade-all": "^0.7.4"
132132
},
133133
"resolutions": {
134-
"pdfjs-dist": "4.5.136"
134+
"pdfjs-dist": "^4.8.69"
135135
}
136136
}

0 commit comments

Comments
 (0)