Skip to content

docker: fix missing dep in image #2517

docker: fix missing dep in image

docker: fix missing dep in image #2517

Workflow file for this run

name: lint-test-build
on:
push:
branches: [develop]
pull_request:
permissions:
contents: read
jobs:
build-server-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
with:
install: true
- run: docker build .
- run: |
docker build --quiet . | \
xargs docker run --detach --publish 8080:8080
timeout=120
while ! curl http://localhost:8080
do
[ $timeout -eq 0 ] && exit 1
sleep 1
timeout=$((timeout - 1))
done