Updated .gitlab-ci and Dockerfile

This commit is contained in:
Kwoth
2022-02-09 22:25:34 +01:00
parent 94e594ae8b
commit d853151053
2 changed files with 88 additions and 88 deletions

View File

@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:5.0-buster-slim AS build
FROM mcr.microsoft.com/dotnet/sdk:6.0-buster-slim AS build
WORKDIR /source
COPY src/NadekoBot/*.csproj src/NadekoBot/
@@ -18,7 +18,7 @@ RUN set -xe; \
chmod +x /app/NadekoBot
# final stage/image
FROM mcr.microsoft.com/dotnet/runtime:5.0-buster-slim
FROM mcr.microsoft.com/dotnet/runtime:6.0-buster-slim
WORKDIR /app
RUN set -xe; \