# Dockerfile for OpenEnv WarehouseMaster FROM python:3.11-slim WORKDIR /app # Install system dependencies for NumPy/Gym RUN apt-get update && apt-get install -y \ build-essential \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy our environment code COPY . . # Expose the API server port EXPOSE 8000 # Start the OpenEnv server CMD ["python", "main.py"]