Update Dockerfile
Browse files- Dockerfile +0 -3
Dockerfile
CHANGED
@@ -1,9 +1,6 @@
|
|
1 |
FROM python:3.9-slim
|
2 |
|
3 |
# Устанавливаем зависимости
|
4 |
-
RUN apt update && apt install -y openssh-server && rm -rf /var/lib/apt/lists/*
|
5 |
-
|
6 |
-
# Устанавливаем Python-зависимости
|
7 |
COPY requirements.txt /app/requirements.txt
|
8 |
WORKDIR /app
|
9 |
RUN pip install -r requirements.txt
|
|
|
1 |
FROM python:3.9-slim
|
2 |
|
3 |
# Устанавливаем зависимости
|
|
|
|
|
|
|
4 |
COPY requirements.txt /app/requirements.txt
|
5 |
WORKDIR /app
|
6 |
RUN pip install -r requirements.txt
|