aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* refactor(docker): improve Dockerfile structure and nginx configurationsaturneric5 days1-2/+11
| | | | | | * Added missing line breaks for better readability. * Changed the nginx configuration path to use `ADD` instead of `COPY`. * Updated the exposed port from `8080` to `80/tcp` for standardization.
* refactor(docker): simplify Dockerfile and nginx configurationsaturneric5 days1-44/+2
| | | | | | * Removed unnecessary stages and commands from the Dockerfile. * Streamlined the nginx configuration for better readability and maintainability. * Ensured the application still builds and runs correctly after changes.
* fix(docker): remove unnecessary nginx user and group creationsaturneric5 days1-4/+0
| | | | | * Eliminated the creation of a custom nginx user and group in the Dockerfile. * This simplifies the Docker image and reduces complexity.
* feat(docker): add Dockerfile and CI workflow for containerizationsaturneric5 days1-0/+57
* 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.