summaryrefslogtreecommitdiff
path: root/.gitlab-ci/run-docker.sh
blob: 653356c738dc28cdb615a4662a50c88a2ce67d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

TAG="registry.gitlab.gnome.org/gnome/clutter/master:v1"

sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
    --file "Dockerfile" .
sudo docker run --rm --security-opt label=disable \
    --volume "$(pwd)/..:/home/user/app" --workdir "/home/user/app" \
    --tty --interactive "${TAG}" bash