Skip to content
This repository has been archived by the owner on May 31, 2019. It is now read-only.

Commit

Permalink
Remove nightly and myget feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate McMaster committed Mar 6, 2017
1 parent 4ba4596 commit 1de401f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion 1.0/jessie/runtime/Dockerfile
@@ -1,4 +1,4 @@
FROM microsoft/dotnet-nightly:1.0.4-runtime
FROM microsoft/dotnet:1.0.4-runtime

# set up network
ENV ASPNETCORE_URLS http://+:80
Expand Down
3 changes: 1 addition & 2 deletions 1.0/jessie/sdk/Dockerfile
@@ -1,4 +1,4 @@
FROM microsoft/dotnet-nightly:1.0.4-sdk
FROM microsoft/dotnet:1.0.4-sdk

# Install keys required for node
RUN set -ex \
Expand Down Expand Up @@ -38,7 +38,6 @@ ENV ASPNETCORE_URLS http://+:80
# warmup up NuGet package cache
COPY packagescache.csproj /tmp/warmup/packagescache.csproj
RUN dotnet restore /tmp/warmup/packagescache.csproj \
--source https://dotnet.myget.org/F/aspnet-feb2017-patch/api/v3/index.json \
--source https://api.nuget.org/v3/index.json \
&& rm -r /tmp/warmup/

Expand Down
2 changes: 1 addition & 1 deletion 1.1/jessie/runtime/Dockerfile
@@ -1,4 +1,4 @@
FROM microsoft/dotnet-nightly:1.1.1-runtime
FROM microsoft/dotnet:1.1.1-runtime

# set up network
ENV ASPNETCORE_URLS http://+:80
Expand Down
3 changes: 1 addition & 2 deletions 1.1/jessie/sdk/Dockerfile
@@ -1,4 +1,4 @@
FROM microsoft/dotnet-nightly:1.1.1-sdk
FROM microsoft/dotnet:1.1.1-sdk

# Install keys required for node
RUN set -ex \
Expand Down Expand Up @@ -39,7 +39,6 @@ ENV ASPNETCORE_URLS http://+:80
# warmup NuGet package cache
COPY packagecache.csproj /tmp/warmup/packagecache.csproj
RUN dotnet restore /tmp/warmup/packagecache.csproj \
--source https://dotnet.myget.org/F/aspnet-feb2017-patch/api/v3/index.json \
--source https://api.nuget.org/v3/index.json \
&& rm -rf /tmp/warmup/

Expand Down
3 changes: 1 addition & 2 deletions kitchensink/Dockerfile
@@ -1,4 +1,4 @@
FROM microsoft/dotnet-nightly:1.1.1-sdk
FROM microsoft/dotnet:1.1.1-sdk

RUN set -ex \
&& for key in \
Expand Down Expand Up @@ -43,7 +43,6 @@ COPY packagecache.csproj /tmp/warmup/packagecache.csproj

# warm up package cache
RUN dotnet restore /tmp/warmup/packagecache.csproj \
--source https://dotnet.myget.org/F/aspnet-feb2017-patch/api/v3/index.json \
--source https://api.nuget.org/v3/index.json \
&& rm -rf /tmp/warmup/

Expand Down

0 comments on commit 1de401f

Please sign in to comment.