Files
Stock-trading-programming/kill_switch/Dockerfile
T

6 lines
129 B
Docker
Raw Normal View History

2026-05-14 15:14:50 +09:00
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir aiohttp python-dotenv
COPY kill.py .
CMD ["python", "kill.py"]