origami_env / Dockerfile
praveen287's picture
Rename server/ to origami_server/ to avoid module name conflict with uvicorn.server
72390e9
raw
history blame
306 Bytes
FROM ghcr.io/meta-pytorch/openenv-base:latest
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt \
&& pip install --no-cache-dir "openenv-core[core]>=0.2.1"
COPY . /app
EXPOSE 8000
CMD ["uvicorn", "origami_server.app:app", "--host", "0.0.0.0", "--port", "8000"]