11# Stage 1 image
22FROM mhart/alpine-node:8 as base
33
4- LABEL maintainer="Jan Kuri <jan@bleenco.com>" \
5- org.label-schema.schema-version="1.0" \
6- org.label-schema.name="abstruse" \
7- org.label-schema.description="Continuous integration platform, simple, scalable and fast" \
8- org.label-schema.url="https://abstruse.bleenco.io/" \
9- org.label-schema.vcs-url="https://github.com/bleenco/abstruse" \
10- org.label-schema.vendor="Bleenco" \
11- org.label-schema.vcs-ref="n/a" \
12- org.label-schema.version="dev"
13-
144ENV DOCKER_VERSION=17.09.0-ce
155
166RUN apk --no-cache add openssl \
@@ -19,6 +9,7 @@ RUN apk --no-cache add openssl \
199 && ln -s /tmp/docker/docker /usr/bin/docker && chmod 755 /usr/bin/docker && rm -rf /tmp/docker.tgz \
2010 && apk del openssl
2111
12+
2213# Stage 2 image
2314FROM base as build
2415
@@ -38,6 +29,16 @@ RUN apk add --no-cache --virtual .build-dependencies make gcc g++ python curl sq
3829# Stage 3 image
3930FROM alpine:3.6
4031
32+ LABEL maintainer="Jan Kuri <jan@bleenco.com>" \
33+ org.label-schema.schema-version="1.0" \
34+ org.label-schema.name="abstruse" \
35+ org.label-schema.description="Continuous integration platform, simple, scalable and fast" \
36+ org.label-schema.url="https://abstruse.bleenco.io/" \
37+ org.label-schema.vcs-url="https://github.com/bleenco/abstruse" \
38+ org.label-schema.vendor="Bleenco" \
39+ org.label-schema.vcs-ref="n/a" \
40+ org.label-schema.version="dev"
41+
4142WORKDIR /app
4243
4344RUN apk --no-cache add tini sqlite git
0 commit comments