Initial commit

This commit is contained in:
zavolo
2026-06-05 00:53:35 +03:00
commit e59e4424a4
7686 changed files with 352420 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
FROM node:18-alpine
# Install dependencies for Mediasoup
RUN apk add --no-cache \
python3 \
make \
g++ \
gcc \
linux-headers
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install npm dependencies
RUN npm ci --only=production
# Copy application files
COPY . .
# Expose ports
EXPOSE 3200
EXPOSE 10000-10100/udp
# Start server
CMD ["node", "server.js"]