/
hed1ad
/
CloudGuard_API_Security_Platform
Обзор
Документация
Войти
/
hed1ad
/
CloudGuard_API_Security_Platform
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tested_api_app/Dockerfile
12 строк
164 B
hed1ad
1.0.0
26 окт 2025, 14:25
26 окт 2025, 14:25
63b0f76
Код
Авторство
О чём код?
FROM python:3.9-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app.py . EXPOSE 8888 CMD ["python", "app.py"]