BULL-1486 | Launchboard: CSP issue with images
Update the docker-compose.yml file within the launchboard-local-dev directory and set the build directory to launchboard-fe to utilize launchboard-fe's docker image, to test this fix:
`
# frontend
launchboard-fe:
build: launchboard-fe
#image: node:lts
#image: temp
#user: root
#user: node
#command: bash -c "npm install --quiet && npm run serve"
#command:
environment:
- PORT=8080
# this is the url the browser uses, so it needs to be the external url (going through the proxy to hit the backend)
- VUE_APP_API_BASE_URL=http://localhost:3333/api
volumes:
- "./launchboard-fe:/app"
working_dir: /app
stdin_open: true
tty: true
ports:
- "8080:8080"
restart: always
Edited by Baban Faraj