Backend/e-suite.API/e-suite.Database.Migrator/Dockerfile.Azure
2026-01-20 21:50:10 +00:00

7 lines
301 B
Docker

#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:9.0 as base
ENV DOTNET_ENVIRONMENT=Development
WORKDIR /app
COPY . .
ENTRYPOINT ["dotnet", "e-suite.Database.Migrator.dll"]