mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 22:31:04 +00:00
18 lines
562 B
Ruby
18 lines
562 B
Ruby
# 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
|