Spaces:
Configuration error
Configuration error
File size: 432 Bytes
fc163a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # 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"]
|