Skip to content

Commit a4efa60

Browse files
authored
Merge pull request #339 from italia/test
Test
2 parents 3a0de7b + 24182e4 commit a4efa60

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Dockerfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,14 @@ ENV NODE_HTTPS_PORT=${EXPOSE_HTTPS_PORT}
7070
# Ports exposed
7171
EXPOSE ${EXPOSE_HTTPS_PORT}
7272

73+
COPY <<EOF /entrypoint.sh
74+
#!/usr/bin/env bash
75+
. ~/.nvm/nvm.sh
76+
cd /spid-saml-check/src/
77+
node server/spid-saml-check.js
78+
EOF
79+
80+
RUN chmod +x /entrypoint.sh
81+
82+
ENTRYPOINT ["/entrypoint.sh"]
7383

74-
ENTRYPOINT cd src && node server/spid-saml-check.js

src/client/view/demo_users.handlebars

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
<th scope="col">Password</th>
5252
<th scope="col">Nome</th>
5353
<th scope="col">Cognome</th>
54+
<th scope="col">Codice fiscale</th>
5455
<th scope="col">Tipo d'identità</th>
5556
<th scope="col">Livello SPID</th>
5657
<th scope="col">Disattivata</th>
@@ -63,6 +64,7 @@
6364
<td>{{this.password}}</td>
6465
<td>{{this.name}}</td>
6566
<td>{{this.familyName}}</td>
67+
<td>{{this.fiscalNumber}}</td>
6668
<td>{{this.purposeIDType}}</td>
6769
<td>SPID Livello {{this.spidLevel}}</td>
6870
<td>{{this.disabled}}</td>

0 commit comments

Comments
 (0)