2020-05-04 10:45:36 +00:00
|
|
|
ARG GOVERSION=latest
|
|
|
|
FROM golang:$GOVERSION
|
2020-02-14 09:44:31 +00:00
|
|
|
|
2023-11-14 06:46:14 +00:00
|
|
|
LABEL org.opencontainers.image.authors="The Syncthing Project" \
|
|
|
|
org.opencontainers.image.url="https://syncthing.net" \
|
|
|
|
org.opencontainers.image.documentation="https://docs.syncthing.net" \
|
|
|
|
org.opencontainers.image.source="https://github.com/syncthing/syncthing" \
|
2023-11-14 07:17:34 +00:00
|
|
|
org.opencontainers.image.vendor="The Syncthing Project" \
|
|
|
|
org.opencontainers.image.licenses="MPL-2.0" \
|
2023-11-14 06:46:14 +00:00
|
|
|
org.opencontainers.image.title="Syncthing Builder"
|
|
|
|
|
2020-02-14 09:44:31 +00:00
|
|
|
# FPM to build Debian packages
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
2020-02-23 07:40:42 +00:00
|
|
|
locales rubygems ruby-dev build-essential git \
|
2020-02-14 09:44:31 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
2021-08-17 07:38:42 +00:00
|
|
|
&& gem install fpm
|