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

set -e

TAG="registry.gitlab.gnome.org/gnome/gobject-introspection:v8"

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