Skip to content

Commit

Permalink
мелкие правки
Browse files Browse the repository at this point in the history
  • Loading branch information
JoCat committed Jan 22, 2025
1 parent 88e8cdf commit b76cb6c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM node:20.12.2-slim AS build
FROM node:22-slim AS build
WORKDIR /build
COPY . .
RUN npm i &&\
npm run build:libs &&\
npm run build:prod -w packages/server

FROM node:20.12.2-slim AS prod
FROM node:22-slim AS prod
EXPOSE 1370/tcp
VOLUME [ "/data" ]
ENV AURORA_STORAGE_OVERRIDE=/data
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/interfaces/api/AuthData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface AuthResponseData {
username: string
userUUID: string
accessToken: string
token:string
token?: string
isAlex?: boolean
skinUrl?: string
capeUrl?: string
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aurora-launcher/server",
"version": "0.0.5-dev.3",
"version": "0.0.5-dev.4",
"description": "LauncherServer for AuroraLauncher",
"keywords": [
"minecraft",
Expand Down
1 change: 1 addition & 0 deletions packages/server/scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const ctx = await context({
"oci-common",
"oci-objectstorage",
"oci-secrets",
"oracledb",
],
plugins: [esbuildDecorators()],
entryPoints: ["src/app.ts"],
Expand Down

0 comments on commit b76cb6c

Please sign in to comment.