@@ -51,4 +51,4 @@ jobs:
|
||||
export TAG=${{ github.sha }}
|
||||
docker compose pull
|
||||
docker compose up -d
|
||||
curl -fsS https://app.rolac.org/api/health
|
||||
curl -fsS https://manage.rolac.org/api/health
|
||||
|
||||
+8
-1
@@ -15,8 +15,15 @@ WORKDIR /app
|
||||
ENV ASPNETCORE_ENVIRONMENT=Production \
|
||||
ASPNETCORE_HTTP_PORTS=8080
|
||||
# curl: used by the HEALTHCHECK (not present in the base image)
|
||||
# libfontconfig1 + fonts: required by DevExpress.Drawing's Skia backend for PDF text
|
||||
# rendering. fonts-noto-cjk supplies the Chinese glyphs used in the receipt PDF.
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends curl \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
curl \
|
||||
libfontconfig1 \
|
||||
fontconfig \
|
||||
fonts-dejavu \
|
||||
fonts-noto-cjk \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
COPY --from=build /app/publish .
|
||||
# storage dir created + owned for the non-root app user
|
||||
|
||||
@@ -8,6 +8,10 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DevExpress.Document.Processor" Version="24.1.3" />
|
||||
<!-- Cross-platform (Linux/Docker) drawing backend for DevExpress.Document.Processor.
|
||||
Provides DevExpress.Drawing.v24.1.Skia.dll; without it RichEditDocumentServer
|
||||
throws DllNotFoundException at runtime on Linux (Windows falls back to GDI+). -->
|
||||
<PackageReference Include="DevExpress.Drawing.Skia" Version="24.1.3" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.11" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.11" />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user