X commited on
Update Dockerfile
Browse files- 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 |
|