Update libuv package (#1577)
- The latest libuv package has a new linux RID that should let us remove the work around with setting the RID in the docker file and systemd service
This commit is contained in:
parent
1bf9b057d4
commit
b4cec03f65
|
|
@ -5,7 +5,7 @@
|
|||
<CoreFxLabsVersion>0.1.0-*</CoreFxLabsVersion>
|
||||
<CoreFxVersion>4.3.0</CoreFxVersion>
|
||||
<InternalAspNetCoreSdkVersion>2.0.0-*</InternalAspNetCoreSdkVersion>
|
||||
<LibUvVersion>1.9.1</LibUvVersion>
|
||||
<LibUvVersion>1.10.0-*</LibUvVersion>
|
||||
<JsonNetVersion>9.0.1</JsonNetVersion>
|
||||
<MoqVersion>4.7.1</MoqVersion>
|
||||
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
|
||||
|
|
|
|||
|
|
@ -3,10 +3,6 @@ FROM microsoft/dotnet-nightly:2.0-runtime-deps
|
|||
# The "container" environment variable is read by systemd.
|
||||
ENV container=docker
|
||||
|
||||
# We're copying assets from an ubuntu machine over the container make the RID
|
||||
# match
|
||||
ENV DOTNET_RUNTIME_ID=ubuntu.14.04-x64
|
||||
|
||||
# This is required by systemd and won't work without "dotnet run --privileged".
|
||||
VOLUME ["/sys/fs/cgroup"]
|
||||
|
||||
|
|
|
|||
|
|
@ -4,5 +4,4 @@ Requires=activate-kestrel.socket
|
|||
[Service]
|
||||
ExecStart=/usr/bin/dotnet SampleApp.dll
|
||||
WorkingDirectory=/publish
|
||||
NonBlocking=true
|
||||
Environment="DOTNET_RUNTIME_ID=ubuntu.14.04-x64"
|
||||
NonBlocking=true
|
||||
Loading…
Reference in New Issue