deploy code 2
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
RUN apk add --no-cache curl
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
|
||||
@@ -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}`);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user