Skip to content

Commit 43799be

Browse files
committed
Shot in the sky 2
1 parent 16b709b commit 43799be

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

voice/Dockerfile.server

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,4 @@ COPY --from=builder /app .
3636

3737
ENV NODE_OPTIONS="--max-old-space-size=4096"
3838

39-
EXPOSE 80
40-
4139
CMD ["node", "dist/server"]

voice/restack_up.mjs

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,19 @@ const main = async () => {
2626
dockerFilePath: "voice/Dockerfile.server",
2727
dockerBuildContext: "voice",
2828
environmentVariables: [
29-
{
30-
name: "PORT",
31-
value: "80",
32-
},
3329
{
3430
name: "SERVER_HOST",
3531
linkTo: serverName,
3632
},
3733
...restackEngineEnvs,
3834
],
35+
portMapping: [
36+
{
37+
port: 4000,
38+
path: "/",
39+
name: "server",
40+
},
41+
],
3942
healthCheckPath: "/"
4043
};
4144

0 commit comments

Comments
 (0)