Skip to content

Commit 9da5ab9

Browse files
chore: update Dockerfile and devcontainer configuration
1 parent b37fb30 commit 9da5ab9

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye
2+
3+
# Remove Yarn repository to avoid GPG key expiration issue
4+
RUN rm -f /etc/apt/sources.list.d/yarn.list

.devcontainer/devcontainer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"name": "azd-template",
3-
"image": "mcr.microsoft.com/devcontainers/python:3.11-bullseye",
3+
"build": {
4+
"dockerfile": "Dockerfile"
5+
},
46
"forwardPorts": [50505],
57
"features": {
68
"ghcr.io/azure/azure-dev/azd:latest": {},
79
"ghcr.io/devcontainers/features/azure-cli:1": {},
810
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
911
"ghcr.io/jlaundry/devcontainer-features/mssql-odbc-driver:1": {
1012
"version": "18"
11-
}
13+
},
14+
"ghcr.io/devcontainers/features/node:1": {}
1215
},
1316
"customizations": {
1417
"vscode": {
@@ -26,4 +29,4 @@
2629
"hostRequirements": {
2730
"memory": "4gb"
2831
}
29-
}
32+
}

.devcontainer/setup_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ git pull
77
sudo chmod +x ./infra/scripts/checkquota_km.sh
88
sudo chmod +x ./infra/scripts/quota_check_params.sh
99
sudo chmod +x ./infra/scripts/process_sample_data.sh
10-
sudo chmod +x ./infra/scripts/process_custom_data.sh
10+
sudo chmod +x ./infra/scripts/process_custom_data.sh

0 commit comments

Comments
 (0)