mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
Add a simple alpine based Dockerfile for images to build manifest
This commit is contained in:
parent
529764a3d7
commit
7ede1f54aa
2 changed files with 13 additions and 0 deletions
|
@ -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"
|
||||
|
|
5
docker/runtime-images/Dockerfile-manifest-builder
Normal file
5
docker/runtime-images/Dockerfile-manifest-builder
Normal 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
|
Loading…
Reference in a new issue