Edit dockercompose

This commit is contained in:
itqop 2025-02-11 02:36:00 +03:00
parent b2b36f325c
commit 2c771ba161
1 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,9 @@ FROM node:18-alpine
WORKDIR /app
# Устанавливаем OpenSSL и другие зависимости
RUN apk add --no-cache openssl1.1 bash
COPY package*.json ./
RUN npm install
@ -12,4 +15,4 @@ RUN npx prisma generate
EXPOSE 4000
CMD ["npm", "run", "dev"]
CMD ["npm", "run", "dev"]