Add a simple alpine based Dockerfile for images to build manifest

This commit is contained in:
Thibault Saunier 2018-11-10 23:49:57 -03:00 committed by Nicolas Dufresne
parent 529764a3d7
commit 7ede1f54aa
2 changed files with 13 additions and 0 deletions

View file

@ -64,6 +64,14 @@ test manifest:
- "docker/**"
- "docker/*/**"
alpine amd64 manifest builder docker:
stage: "build runtime"
variables:
ARCH: "amd64"
TAG: "alpine-manifest-build"
CONTEXT_DIR: "docker/runtime-images/"
DOCKERFILE: "docker/runtime-images/Dockerfile-manifest-builder"
extends: .base
fedora amd64 run docker:
stage: "build runtime"

View file

@ -0,0 +1,5 @@
FROM python:3.7.1-alpine
RUN pip install requests
RUN apk add git
RUN cd / && git clone https://gitlab.freedesktop.org/gstreamer/gst-ci.git