Skip to content

Commit b608f96

Browse files
authored
Merge branch 'master' into stazz/NuGetUtilsUpdate
2 parents 9d8eb38 + 7686beb commit b608f96

File tree

8 files changed

+25
-12
lines changed

8 files changed

+25
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: csharp
22
sudo: required
33
dist: trusty
4-
dotnet: 2.1.504
4+
dotnet: 2.1.505
55
mono:
66
- latest
77
os:

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
DOTNET_SDK_VERSION: '2.1.504'
2+
DOTNET_SDK_VERSION: '2.1.505'
33
DOTNET_PACKAGE_TYPE: 'sdk'
44
RUBY_VERSION: '2.5'
55

build.cake

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -411,17 +411,22 @@ Task("Docker-Build")
411411
{
412412
if (parameters.IsRunningOnWindows)
413413
{
414-
DockerBuild("windows", "nano", "netcoreapp2.1", parameters);
415414
DockerBuild("windows", "windowsservercore", "net472", parameters);
415+
416+
DockerBuild("windows", "nano", "netcoreapp2.1", parameters);
417+
418+
DockerBuild("windows", "nano", "netcoreapp2.2", parameters);
416419
}
417420
else if (parameters.IsRunningOnLinux)
418421
{
419-
DockerBuild("linux", "debian", "net472", parameters);
420-
DockerBuild("linux", "debian", "netcoreapp2.1", parameters);
421-
DockerBuild("linux", "centos7", "netcoreapp2.1", parameters);
422+
DockerBuild("linux", "debian", "net472", parameters);
423+
424+
DockerBuild("linux", "debian", "netcoreapp2.1", parameters);
425+
DockerBuild("linux", "centos7", "netcoreapp2.1", parameters);
422426
DockerBuild("linux", "fedora27", "netcoreapp2.1", parameters);
423-
DockerBuild("linux", "debian", "netcoreapp2.2", parameters);
424-
DockerBuild("linux", "centos7", "netcoreapp2.2", parameters);
427+
428+
DockerBuild("linux", "debian", "netcoreapp2.2", parameters);
429+
DockerBuild("linux", "centos7", "netcoreapp2.2", parameters);
425430
DockerBuild("linux", "fedora27", "netcoreapp2.2", parameters);
426431
}
427432
});

build.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22
CAKE_VERSION=0.32.1
3-
DOTNET_VERSION=2.1.504
3+
DOTNET_VERSION=2.1.505

src/Docker/windows/nano/netcoreapp2.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:2.1-runtime
1+
FROM mcr.microsoft.com/dotnet/core/runtime:2.1-nanoserver-sac2016
22
LABEL maintainers="GitTools Maintainers"
33
ARG contentFolder
44

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM mcr.microsoft.com/dotnet/core/runtime:2.2-nanoserver-sac2016
2+
LABEL maintainers="GitTools Maintainers"
3+
ARG contentFolder
4+
5+
WORKDIR /app
6+
COPY $contentFolder/ ./
7+
8+
ENTRYPOINT ["dotnet", "GitVersion.dll"]

src/Docker/windows/windowsservercore/net472/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet-framework:4.7.2-runtime
1+
FROM mcr.microsoft.com/dotnet/framework/runtime:4.7.2
22
LABEL maintainers="GitTools Maintainers"
33
ARG contentFolder
44

src/global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "2.1.504"
3+
"version": "2.1.505"
44
}
55
}

0 commit comments

Comments
 (0)