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 System; | |
using System.IO; | |
using System.Linq; | |
using Microsoft.Extensions.DependencyInjection; | |
using Microsoft.OpenApi.Models; | |
using Microsoft.AspNetCore.Builder; | |
using Swashbuckle.AspNetCore.SwaggerGen; | |
namespace DayHiker.API.Helpers | |
{ |
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/core/sdk:3.1 AS build-env | |
# Set working directory | |
WORKDIR /app | |
# Copy source code | |
COPY . ./ | |
# Restore packages | |
RUN cd src && dotnet restore |
OlderNewer