FROM python:3.9 WORKDIR /app COPY . . RUN unzip index.json.zip && rm index.json.zip RUN pip install --no-cache-dir -r requirements.txt COPY start_server.py . EXPOSE 8080 CMD ["python", "start_server.py"]