Skip to content

Commit

Permalink
use image args for FROM, use golang-builder
Browse files Browse the repository at this point in the history
concourse/concourse#6425

Signed-off-by: Alex Suraci <[email protected]>
  • Loading branch information
vito authored and Rui Yang committed Jul 7, 2021
1 parent 3bb1cf7 commit cc33973
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions dockerfiles/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM golang:alpine AS builder
ARG base_image=alpine:latest
ARG builder_image=concourse/golang-builder

FROM ${builder_image} AS builder
COPY . $GOPATH/src/github.com/concourse/github-release-resource
WORKDIR $GOPATH/src/github.com/concourse/github-release-resource
ENV CGO_ENABLED 0
Expand All @@ -10,7 +13,7 @@ RUN set -e; for pkg in $(go list ./...); do \
go test -o "/tests/$(basename $pkg).test" -c $pkg; \
done

FROM alpine:edge AS resource
FROM ${base_image} AS resource
RUN apk add --update bash tzdata ca-certificates
COPY --from=builder /assets /opt/resource

Expand Down
7 changes: 5 additions & 2 deletions dockerfiles/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM concourse/golang-builder as builder
ARG base_image
ARG builder_image=concourse/golang-builder

FROM ${builder_image} as builder
COPY . $GOPATH/src/github.com/concourse/github-release-resource
ENV CGO_ENABLED 0
WORKDIR $GOPATH/src/github.com/concourse/github-release-resource
Expand All @@ -10,7 +13,7 @@ RUN set -e; for pkg in $(go list ./...); do \
go test -o "/tests/$(basename $pkg).test" -c $pkg; \
done

FROM ubuntu:bionic AS resource
FROM ${base_image} AS resource
RUN apt-get update && apt-get install -y --no-install-recommends \
tzdata \
ca-certificates \
Expand Down

0 comments on commit cc33973

Please sign in to comment.