tangled
alpha
login
or
join now
vielle.dev
/
dnd-astral-powers
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
try 4322??
vielle.dev
1 month ago
4731aab8
19d43f7e
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+5
-1
2 changed files
expand all
collapse all
unified
split
Dockerfile
astro.config.mjs
+1
-1
Dockerfile
···
11
11
RUN pnpm install --prod
12
12
RUN pnpm run build
13
13
14
14
-
EXPOSE 4321
14
14
+
EXPOSE 4322
15
15
16
16
CMD ["node", "./dist/server/entry.mjs"]
+4
astro.config.mjs
···
7
7
adapter: node({
8
8
mode: "standalone",
9
9
}),
10
10
+
11
11
+
server: {
12
12
+
port: 4322,
13
13
+
},
10
14
});