aboutsummaryrefslogtreecommitdiffstats
path: root/.builds/debian-11-docker.yml
blob: 4a52effb8e2d4acf5047a0a69799f737f96e7870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: alpine/3.14
packages:
  # Using Docker for CI is less efficient, but means we can run identical builds
  # in CI and in local development.
  - docker
tasks:
  - setup: |
      sudo adduser $(whoami) docker
      sudo service docker start
      sleep 2

  - build: |
      cd mediagoblin
      docker build -t mediagoblin-debian-11 - < Dockerfile-debian-11-sqlite