updated .\dockerfile and .\prisma\ [deploy]
Some checks failed
Deploy Discord Bot / deploy (push) Failing after 1m55s

This commit is contained in:
Pascal Prießnitz
2025-12-03 02:51:55 +01:00
parent 3afd40a717
commit 4a473ffe31

View File

@@ -8,6 +8,8 @@ RUN apt-get update && apt-get install -y \
WORKDIR /usr/src/app
ENV NODE_ENV=development
COPY package*.json ./
# Alle Dependencies inkl. dev installieren
@@ -16,7 +18,8 @@ RUN npm ci
# OPTIONAL, aber hilfreich: global ts-node-dev installieren,
# damit der Befehl IMMER verfügbar ist, auch wenn node_modules-mal zickt
RUN npm install -g ts-node-dev
RUN npm install -g prisma
RUN npm install
#UN npm install -g prisma
COPY . .