Hugging_face_Openenv / Dockerfile
SushCodex's picture
Upload 14 files
fc163a0 verified
raw
history blame contribute delete
432 Bytes
# 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"]