Skip to content

Commit ea1615c

Browse files
committed
1.0.4
1 parent 134205c commit ea1615c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,5 @@ jobs:
4747
labels: ${{ steps.meta.outputs.labels }}
4848
cache-from: type=gha
4949
cache-to: type=gha,mode=max
50+
provenance: true
51+
sbom: true

CreatePdf.NET/CreatePdf.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77

88
<PackageId>CreatePdf.NET</PackageId>
9-
<Version>1.0.3</Version>
9+
<Version>1.0.4</Version>
1010
<Authors>Alexander Nachtmann</Authors>
1111
<Description>A simple, .NET library for PDF creation with text and bitmap rendering, plus optional OCR functionality for text extraction.</Description>
1212
<PackageTags>pdf;document;generation;lightweight;net10;preview;ocr</PackageTags>

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,10 @@ await Pdf.Create()\n\
2222
\n\
2323
Console.WriteLine("PDF created successfully!");' > Program.cs
2424

25+
RUN groupadd -r appuser && useradd -r -g appuser appuser
26+
27+
RUN chown -R appuser:appuser /demo
28+
29+
USER appuser
30+
2531
ENTRYPOINT ["dotnet", "run"]

0 commit comments

Comments
 (0)