X commited on
Commit
7e6d520
·
verified ·
1 Parent(s): b91cba4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -7
Dockerfile CHANGED
@@ -1,12 +1,5 @@
1
  FROM python:3.10-slim
2
 
3
- # Устанавливаем Node.js и PeerJS ПРАВИЛЬНО
4
- RUN apt-get update && apt-get install -y curl && \
5
- curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
6
- apt-get install -y nodejs && \
7
- npm install -g peer && \
8
- pip install --no-cache-dir fastapi uvicorn[standard] python-multipart
9
-
10
  WORKDIR /app
11
  COPY app.py .
12
 
 
1
  FROM python:3.10-slim
2
 
 
 
 
 
 
 
 
3
  WORKDIR /app
4
  COPY app.py .
5