Updated Dockerfile to print out Python output.

This commit is contained in:
Tanner Van Teeffelen 2026-06-02 22:23:44 -04:00
parent 6021d6e1b0
commit 55302a3be6

View file

@ -10,4 +10,4 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY main.py . COPY main.py .
# Run script # Run script
CMD ["python", "main.py"] CMD ["python", "-u", "main.py"]