FROM python:3.10-slim

WORKDIR /app
COPY run.py .         # โค้ดนักเรียน
COPY input.txt .      # อินพุต

CMD timeout 5s python run.py < input.txt
