# Use the specified base image | |
FROM docker pull ghcr.io/opendevin/opendevin:main@sha256:259d63826a06d1dd35bfec17c84be1d43715a9dec82eede87758ec5a270a5b3a | |
# Expose the application port | |
EXPOSE 3000 | |
# Default command to run the application | |
CMD ["uvicorn", "opendevin.server.listen:app", "--port", "3000"] | |