Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM mcr.microsoft.com/devcontainers/universal:latest
Comment thread
Akanshu-2u marked this conversation as resolved.

# Fix: remove legacy Yarn apt repo that can break apt-get update with EXPKEYSIG

RUN rm -f /etc/apt/sources.list.d/yarn.list \
/etc/apt/sources.list.d/yarn*.list \
&& apt-get update
Comment thread
Akanshu-2u marked this conversation as resolved.
Outdated
Comment thread
Akanshu-2u marked this conversation as resolved.
Outdated
3 changes: 3 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"hostRequirements": {
"cpus": 8
},
"build": {
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"settings": {
Expand Down
Loading