File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ ARG DOCKER_VERSION="latest"
14
14
# Enable new "BUILDKIT" mode for Docker CLI
15
15
ENV DOCKER_BUILDKIT=1
16
16
17
+ # https://github.com/microsoft/vscode-dev-containers/issues/1617
18
+ ENV IGNORE_NOTICE=true
19
+
17
20
ARG USERNAME=automatic
18
21
ARG USER_UID=1000
19
22
ARG USER_GID=$USER_UID
Original file line number Diff line number Diff line change 3
3
echo ' Creating symlink for embedded sdk...'
4
4
5
5
# pwd is the source root folder
6
- ln -s /usr/share/dotnet/sdk _dotnetsdk
7
- echo .6.0.300 >> _dotnetsdk/6.0.300/.6.0.300
8
- # ln -s /home/root/.dotnet/dotnet _dotnetsdk/6.0.300/dotnet
6
+ rm -rf _dotnetsdk
7
+ ln -s /usr/share/dotnet/sdk/6.0.300 _dotnetsdk
9
8
10
- exit 0
9
+ # Satisfy dev.sh SDK conditions
10
+ echo .6.0.300 > _dotnetsdk/6.0.300/.6.0.300
11
+ ln -s /usr/bin/dotnet /usr/share/dotnet/sdk/6.0.300/dotnet
11
12
12
13
cd src
13
- ./dev.sh
14
+ ./dev.sh
15
+
16
+ dotnet restore ActionsRunner.sln
You can’t perform that action at this time.
0 commit comments