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