Downgrade docker for now

This commit is contained in:
Jordan Brown
2018-04-16 18:21:47 -04:00
parent cf968c4069
commit 410d241a6f
3 changed files with 4 additions and 3 deletions
+2
View File
@@ -5,5 +5,7 @@ docker-compose.yml
.vs
.vscode
legacy
packages
build
*/bin
*/obj
+2 -2
View File
@@ -1,4 +1,4 @@
FROM microsoft/dotnet:2.1-sdk AS build
FROM microsoft/dotnet:2.0-sdk AS build
WORKDIR /src
COPY tgstation-server.sln ./
@@ -36,7 +36,7 @@ RUN dotnet test -c Release
FROM build AS publish
RUN dotnet publish -c Release -o /app
FROM microsoft/dotnet:2.1-runtime
FROM microsoft/dotnet:2.0-runtime
EXPOSE 80
WORKDIR /app
@@ -7,7 +7,6 @@ using System;
using System.Collections.Generic;
using System.Globalization;
using System.IdentityModel.Tokens.Jwt;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using Tgstation.Server.Api;