Add trading cockpit Dockerfile

This commit is contained in:
2026-05-24 09:32:08 +02:00
parent 217d0a8ca3
commit 0653322337
+18
View File
@@ -0,0 +1,18 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
FLASK_HOST=0.0.0.0 \
FLASK_DEBUG=0 \
PORT=5050
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5050
CMD ["python", "app.py"]