Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge docker refactor #1

Merged
merged 14 commits into from
Oct 13, 2024
Merged

Merge docker refactor #1

merged 14 commits into from
Oct 13, 2024

Conversation

pythoninthegrass
Copy link
Owner

Test CI on master branch

## tl;dr

Refactored both the dockerfile and docker-compose files to improve performance, build size/caching, and maintainability.

## High level changes

- `docker-compose*.yml`
  - container name
  - build context and dockerfile
  - hostname
  - platform w/fallback
  - read .env for platform and sane compose defaults
  - explicit bridge network
  - workdir
- `Dockerfile`
  - set syntax (future proof w/heredocs and interpolation)
  - pin image
  - multistage builder
  - pip, python, and local env vars
  - clean up build deps from apk
  - update pip before installing requirements
  - copy build deps to runner stage
  - set workdir (overridden by compose)
  - label for github actions builds
- `docker.yml`
  - CI to build the docker image and push to either ghcr.io by default or dockerhub when `REGISTRY_URL` is set to docker.io
- `docker-entrypoint.sh`
  - get interpreter from env
  - remove bashisms (posix sh)
  - double quote cli args to avoid word splitting
- `.dockerignore`: add exclusions
- `.env.example`
  - set compose file name (useful for multiple compose files)
  - remove orphans by default
  - platform for local builds on arm
- `.dive-ci`: analyze image to reduce build size
- `.hadolint.yaml`: lint Dockerfile
- descriptions of exclusions/inclusion
- included .env.example for docker builds
This one is optional, but I've found editorconfig to be invaluable when working on projects with more than two devs. Happy to remove or edit per the maintainers.

https://EditorConfig.org
- opus-dev and ca-certificates reinstated
- sorted runtime deps
- changed builder workdir to match runner
Gets description from repo instead of dockerfile
@pythoninthegrass pythoninthegrass merged commit 10f5caf into master Oct 13, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant