-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rechtlogisch/eric-40.2
upd: ERiC 40.2.10
- Loading branch information
Showing
13 changed files
with
312 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
FROM --platform=linux/amd64 gcc as build | ||
FROM --platform=linux/amd64 gcc AS build | ||
COPY . /app | ||
WORKDIR /app | ||
RUN make | ||
|
||
FROM --platform=linux/amd64 ubuntu as final | ||
FROM --platform=linux/amd64 ubuntu AS final | ||
WORKDIR /app | ||
RUN mkdir -p /app/vendor | ||
RUN mkdir -p /app/CEZ | ||
RUN mkdir -p /app/certificate | ||
COPY --from=build \ | ||
/app/cotto \ | ||
./ | ||
COPY --from=build \ | ||
/app/vendor/*.so \ | ||
./vendor/ | ||
COPY --from=build \ | ||
/app/CEZ/*.p12 \ | ||
/app/CEZ/*.cer \ | ||
./CEZ/ | ||
/app/certificate/*.pfx \ | ||
./certificate/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Run `./get-test-certificate.sh` or copy your .pfx-file here manually. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/bash | ||
|
||
TARGET_DIRECTORY="CEZ/" | ||
TARGET_DIRECTORY="certificate/" | ||
CERTIFICATE_ARCHIVE_FILENAME="Test_Zertifikate.zip" | ||
|
||
curl -sS -o "$TARGET_DIRECTORY$CERTIFICATE_ARCHIVE_FILENAME" https://download.elster.de/download/schnittstellen/"$CERTIFICATE_ARCHIVE_FILENAME" && \ | ||
unzip -j "$TARGET_DIRECTORY$CERTIFICATE_ARCHIVE_FILENAME" -d "$TARGET_DIRECTORY" eric-zertifikate-bescheidabholung/PSE/eric_private.p12 eric-zertifikate-bescheidabholung/PSE/eric_public.cer && \ | ||
unzip -j "$TARGET_DIRECTORY$CERTIFICATE_ARCHIVE_FILENAME" -d "$TARGET_DIRECTORY" test-softorg-pse.pfx && \ | ||
rm "$TARGET_DIRECTORY$CERTIFICATE_ARCHIVE_FILENAME" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
The header files in this directory originate from ERiC package [ERiC-40.1.8.0-Linux-x86_64.jar](https://www.elster.de/elsterweb/entwickler/infoseite/eric) | ||
|
||
They are shared here publically based on the § 4 (1) of the "Softwarehersteller-Lizenzvertrag" (lizenz.pdf) included in the above mentioned ERiC package. | ||
They are shared here publicly based on the § 4 (1) of the "Softwarehersteller-Lizenzvertrag" (lizenz.pdf) included in the above-mentioned ERiC package. |
Oops, something went wrong.