Skip to content
Open
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
4 changes: 2 additions & 2 deletions backoffice/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0 as base
FROM mcr.microsoft.com/dotnet/sdk:10.0 as base
ENV ASPNETCORE_URLS="http://+:5000"
ENV NO_PROXY=169.254.169.254,169.254.170.2
ENV AWS_REGION="eu-west-2"
Expand All @@ -8,7 +8,7 @@ EXPOSE 5000
# Timezone setup
RUN ln -snf /usr/share/zoneinfo/Europe/London /etc/localtime && echo "Europe/London" > /etc/timezone

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build

WORKDIR /app

Expand Down
Loading