aboutsummaryrefslogtreecommitdiffstats
path: root/.gitea/workflows (follow)
Commit message (Collapse)AuthorAgeFilesLines
* refactor(ci): simplify runner configuration for Docker jobsaturneric4 days1-1/+1
| | | | * Removed redundant runner options to streamline CI configuration.
* refactor(ci): update docker job to support multiple environmentssaturneric4 days1-1/+1
| | | | * Changed `runs-on` from `ubuntu-latest` to `[ubuntu-latest, ubuntu-latest-server]` to allow for more flexible CI testing environments.
* fix(ci): correct Docker image path in CI configurationsaturneric4 days1-1/+1
| | | | | * Updated the `DOCKER_IMAGE` variable to use the correct repository path. * Ensures proper image building and pushing during CI workflows.
* feat(docker): add Dockerfile and CI workflow for containerizationsaturneric4 days1-0/+48
* Introduced a `Dockerfile` for building and running the application in a container. * Added a CI workflow in `.gitea/workflows/ci.yaml` to automate testing and image pushing on main branch pushes. * Configured Nginx for serving the application with health checks and caching strategies.