This commit is contained in:
2020-08-25 19:18:36 +00:00
parent cfbb70c284
commit 6c7faff512
4 changed files with 41 additions and 12 deletions

View File

@@ -2,4 +2,13 @@ FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-alpine
WORKDIR /app
COPY ./files .
RUN apk add postgresql-client
RUN apk add --no-cache \
chromium \
nss \
freetype \
freetype-dev \
harfbuzz \
ca-certificates \
ttf-freefont
ENTRYPOINT ["dotnet", "AyaNova.dll"]