File tree 2 files changed +24
-2
lines changed
src/Components/benchmarkapps/Wasm.Performance
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,18 @@ RUN .dotnet/dotnet publish -c Release --no-restore -o /app ./src/Components/benc
29
29
RUN chmod +x /app/Wasm.Performance.Driver
30
30
31
31
WORKDIR /app
32
- FROM selenium/standalone-chrome:124.0 as final
32
+ # NOTE: This has been commented out because it is causing our builds to get a build warning
33
+ # because we are pulling this container image from docker.io. We should consider whether
34
+ # we need this code in our repo at all, and if not remove it.
35
+ # If we do need it then we need to get the container image imported into mcr.microsoft.com
36
+ #
37
+ # I have opened up a PR to do this, however it is not certain we'll be allowed to do this
38
+ # and there is further legal/compliance work that needs to be done. In the meantime commenting
39
+ # this out should get our builds to green again whilst this issue is resolved.
40
+ #
41
+ # PR: https://github.com/microsoft/mcr/pull/3232
42
+ #
43
+ # FROM selenium/standalone-chrome:124.0 as final
33
44
COPY --from=build ./app ./
34
45
COPY ./exec.sh ./
35
46
Original file line number Diff line number Diff line change 1
- FROM selenium/standalone-chrome:latest as final
1
+ # NOTE: This has been commented out because it is causing our builds to get a build warning
2
+ # because we are pulling this container image from docker.io. We should consider whether
3
+ # we need this code in our repo at all, and if not remove it.
4
+ # If we do need it then we need to get the container image imported into mcr.microsoft.com
5
+ #
6
+ # I have opened up a PR to do this, however it is not certain we'll be allowed to do this
7
+ # and there is further legal/compliance work that needs to be done. In the meantime commenting
8
+ # this out should get our builds to green again whilst this issue is resolved.
9
+ #
10
+ # PR: https://github.com/microsoft/mcr/pull/3232
11
+ #
12
+ # FROM selenium/standalone-chrome:latest as final
2
13
3
14
ENV StressRunDuration=0
4
15
You can’t perform that action at this time.
0 commit comments