This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Carter; | |
using Microsoft.AspNetCore.Authentication.JwtBearer; | |
using Microsoft.EntityFrameworkCore; | |
using Microsoft.Extensions.Options; | |
using Microsoft.IdentityModel.Tokens; | |
using Microsoft.OpenApi.Models; | |
using RSO.Core.BL; | |
using RSO.Core.Configurations; | |
using RSO.Core.Models; | |
using RSO.Core.Repository; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as base | |
ENV ASPNETCORE_ENVIRONMENT=Development | |
WORKDIR /app | |
#Expose ports | |
EXPOSE 80 | |
EXPOSE 443 | |
#Set up build image | |
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build |