warehouse-wave-sim / Dockerfile
Trae Assistant
Initial commit: Warehouse Wave Simulator with full localization and error handling
a46db2e
raw
history blame contribute delete
125 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir flask
EXPOSE 7860
CMD ["python", "app.py"]