We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45a8b48 commit 8e212e3Copy full SHA for 8e212e3
.devcontainer/Dockerfile
@@ -0,0 +1,8 @@
1
+FROM mcr.microsoft.com/devcontainers/universal:latest
2
+
3
+# Fix: remove legacy Yarn apt repo that can break apt-get update with EXPKEYSIG
4
5
+RUN rm -f /etc/apt/sources.list.d/yarn.list \
6
+ /etc/apt/sources.list.d/yarn*.list \
7
+ && apt-get update \
8
+ && rm -rf /var/lib/apt/lists/*
.devcontainer/devcontainer.json
@@ -2,6 +2,9 @@
"hostRequirements": {
"cpus": 8
},
+ "build": {
+ "dockerfile": "Dockerfile"
+ },
"customizations": {
9
"vscode": {
10
"settings": {
0 commit comments