summaryrefslogtreecommitdiffstats
path: root/Dockerfile.builder
blob: 3f1094834bbf645568cbbac67f414b3da843dc4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# We will grab the Go compiler from the latest Go image.
FROM golang:1.13 as go

# Otherwise we base on the snapcraft container as that is by far the
# most complex and tricky thing to get installed and working...
FROM snapcore/snapcraft

# Go
COPY --from=go /usr/local/go /usr/local/go
ENV PATH="/usr/local/go/bin:$PATH"

# FPM to build Debian packages
RUN apt-get update && apt-get install -y --no-install-recommends \
	locales rubygems ruby-dev build-essential git \
	&& apt-get clean \
	&& rm -rf /var/lib/apt/lists/* \
	&& gem install --no-ri --no-rdoc fpm