Added correct pathing to pythonenv

This commit is contained in:
2025-09-06 14:41:00 -04:00
parent 9831412fd5
commit a1cfddaf58

View File

@@ -30,7 +30,7 @@ COPY CLAUDE.md README.md ./
RUN mkdir -p /app/data/logs /app/data/images /app/data/roms /app/data/metadata
# Set environment variables
ENV PYTHONPATH=/app
ENV PYTHONPATH=/app/src
ENV DOSFRONTEND_CONFIG_DIR=/app/data
# Expose ports
@@ -46,4 +46,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8080/health || exit 1
# Default command
CMD ["python", "-m", "uvicorn", "src.webapp:app", "--host", "0.0.0.0", "--port", "8080"]
CMD ["python", "-m", "uvicorn", "src.webapp:app", "--host", "0.0.0.0", "--port", "8080"]