Skip to content

Instantly share code, notes, and snippets.

View migueloliveiradev's full-sized avatar
😃

Miguel Oliveira migueloliveiradev

😃
View GitHub Profile
@migueloliveiradev
migueloliveiradev / Dockerfile
Created March 14, 2023 21:15
Fixing System.TypeInitializationException: The type initializer for 'Gdip' threw an exception.
FROM mcr.microsoft.com/dotnet/sdk:6.0 as build-env
WORKDIR /src
COPY ./WebApplication2/WebApplication2/* .
RUN dotnet restore
COPY ./WebApplication2/ .
RUN dotnet publish -c Release -o /publish
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as runtime