docker: bug fixed.

This commit is contained in:
AirryCo
2025-01-12 12:07:37 +08:00
parent 5db01dae32
commit 7d9fde2487
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ RUN apk add --no-cache git unzip && \
git clone -b main --depth=1 https://github.com/project-fika/Fika-Server.git /fika-server && \
cd /fika-server && \
npm install && npm run build && \
mkdir output && cd output && unzip /fika-server/dist/fika-server.zip
mkdir output && cd output && unzip /fika-server/dist/*.zip
FROM node:20.11.1-bullseye AS server-builder
RUN apt update && apt install -y git git-lfs p7zip-full && \