Skip to content

Commit

Permalink
fix: pdf container jar name in start command (PDF) (#13449)
Browse files Browse the repository at this point in the history
  • Loading branch information
SandGrainOne authored Aug 30, 2024
1 parent 3d9525d commit f27a42c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Altinn.Platform/Altinn.Platform.PDF/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ COPY --from=build /build/target .
RUN addgroup --gid 3000 dotnet && adduser --uid 1000 --ingroup dotnet --disabled-password --shell /bin/false dotnet
# update permissions of files if neccessary before becoming dotnet user
USER dotnet
CMD ["java", "-jar", "./Altinn.Platform.PDF-1.0.jar"]
CMD ["java", "-jar", "./Altinn.Platform.PDF-1.0.0.jar"]
8 changes: 8 additions & 0 deletions src/Altinn.Platform/Altinn.Platform.PDF/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ git clone https://github.com/Altinn/altinn-studio
cd altinn-studio
```

#### Running the application using Podman

The PDF component can be run locally using podman. To build and run the application use the command.

```cmd
podman compose up -d --build
```

#### Running the application with Maven

The PDF components can be run locally when developing/debugging.
Expand Down

0 comments on commit f27a42c

Please sign in to comment.