Add Dockerfile and Docker Compose for containerized deployment#69
Draft
Add Dockerfile and Docker Compose for containerized deployment#69
Conversation
Co-authored-by: binyamin555 <42520501+binyamin555@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add Dockerfile to enable containerized development and deployment
Add Dockerfile for containerized deployment
Mar 17, 2026
Member
|
@copilot how about a compose file? |
Co-authored-by: binyamin555 <42520501+binyamin555@users.noreply.github.com>
Author
Added in commit docker compose up |
Copilot
AI
changed the title
Add Dockerfile for containerized deployment
Add Dockerfile and Docker Compose for containerized deployment
Mar 17, 2026
Member
|
@neriyaco we need to verify this works |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds container support to enable consistent development and deployment environments.
Changes
Dockerfile—python:3.12-slimbase; upgrades pip, installs deps, setsPYTHONPATH=/app/includefor local packages (ez,sandbox,utilities), exposes port8000, and launches viapython -m core.startup --host 0.0.0.0 --port 8000requirements.txt— pinned minimum versions for all third-party runtime deps:starlette,uvicorn[standard],pydantic>=2.0,sqlalchemy>=2.0,pyyaml,python-seamless,watchfiles.dockerignore— excludes.venv,__pycache__,.git,lib/,bin/, and build artefactsdocker-compose.yml— defines awebservice that builds from the localDockerfile, maps port8000, mounts the project root as a volume for live code changes, and setsPYTHONPATHUsage
docker build -t ez-web . docker run -p 8000:8000 ez-webOr with Docker Compose:
To serve a specific site directory, mount it and pass the path:
Original prompt
📍 Connect Copilot coding agent with Jira, Azure Boards or Linear to delegate work to Copilot in one click without leaving your project management tool.