Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ trigger:
- release
steps:
- name: run tests
image: mcr.microsoft.com/dotnet/sdk:7.0
image: mcr.microsoft.com/dotnet/sdk:9.0
commands:
- dotnet test
---
Expand Down
4 changes: 2 additions & 2 deletions src/Api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# syntax=docker/dockerfile:1.4.3

FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine as builder
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine as builder
WORKDIR /build
COPY ../../. .
RUN dotnet publish -c Release -o /build/publish src/Api/Api.csproj

#########################################################################

FROM mcr.microsoft.com/dotnet/aspnet:7.0-alpine AS final
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine AS final
WORKDIR /app
EXPOSE 80
COPY --from=builder /build/publish .
Expand Down
2 changes: 1 addition & 1 deletion src/Web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.4.3

FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine as builder
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine as builder
WORKDIR /build
COPY ../../. .
RUN dotnet publish -c Release -o /build/publish src/Web/Web.csproj
Expand Down
Loading