diff --git a/src/Tuitio/Dockerfile b/src/Tuitio/Dockerfile index 460b4a4..39faa68 100644 --- a/src/Tuitio/Dockerfile +++ b/src/Tuitio/Dockerfile @@ -1,11 +1,11 @@ #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. -FROM mcr.microsoft.com/dotnet/aspnet:8.0-bullseye-slim AS base +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base WORKDIR /app EXPOSE 80 # This stage is used to build the service project -FROM mcr.microsoft.com/dotnet/sdk:8.0-bullseye-slim AS build +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /workspace COPY ["dependencies.props", "."]