Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
JoCat committed May 9, 2024
1 parent ae35afe commit 7b77572
Show file tree
Hide file tree
Showing 5 changed files with 1,280 additions and 441 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM node:20.11.1-slim AS build
FROM node:20.12.2-slim AS build
WORKDIR /build
COPY . .
RUN npm i &&\
npm run build:libs &&\
npm run build:prod -w packages/server

FROM node:20.11.1-slim AS prod
FROM node:20.12.2-slim AS prod
EXPOSE 1370/tcp
VOLUME [ "/data" ]
ENV AURORA_STORAGE_OVERRIDE=/data
WORKDIR /app
COPY --from=build /build/packages/server/dist/LauncherServer.js .
COPY --from=build /build/packages/server/dist/LauncherServer.js .

ENTRYPOINT ["node", "LauncherServer.js"]
ENTRYPOINT ["node", "LauncherServer.js"]
Loading

0 comments on commit 7b77572

Please sign in to comment.