zzz / Dockerfile
ar08's picture
Update Dockerfile
3e30972 verified
raw
history blame contribute delete
221 Bytes
# 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"]