deploy code 2

This commit is contained in:
NishantRajputRN
2026-05-19 18:12:24 +05:30
parent 44d3f015fe
commit 554c873f5d
4 changed files with 20 additions and 11 deletions
+2
View File
@@ -1,5 +1,7 @@
FROM node:22-alpine
RUN apk add --no-cache curl
WORKDIR /app
COPY package.json package-lock.json ./
+2 -2
View File
@@ -53,7 +53,7 @@ app.get('/api/me', requireAccessToken, (req, res) => {
});
});
app.listen(port, () => {
console.log(`API listening on http://localhost:${port}`);
app.listen(port, '0.0.0.0', () => {
console.log(`API listening on http://0.0.0.0:${port}`);
console.log(`OIDC issuer: ${oidcIssuer}`);
});