Refactor frontend service configuration in docker-compose.yml

- Changed the frontend service to build from a local context instead of using a pre-built image.
- Specified the Dockerfile for the frontend build process.
This commit is contained in:
chamiakJ
2025-04-28 15:20:39 +05:30
parent 54642037d3
commit b9e5f396fd

View File

@@ -1,6 +1,8 @@
services:
frontend:
image: docker.io/chamikajaycey/worklenz-frontend:latest
build:
context: ./worklenz-frontend
dockerfile: Dockerfile
container_name: worklenz_frontend
ports:
- "5000:5000"