-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support patch releases in all build files and add ubuntu 24.04
- Loading branch information
Showing
29 changed files
with
48 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,10 @@ MAINTAINER Vladimir Smirnov <[email protected]> | |
USER root | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN sed -i 's/mirror.centos.org/vault.centos.org/g' /etc/yum.repos.d/CentOS-*.repo | ||
RUN sed -i 's/^#.*baseurl=http/baseurl=http/g' /etc/yum.repos.d/CentOS-*.repo | ||
RUN sed -i 's/^mirrorlist=http/#mirrorlist=http/g' /etc/yum.repos.d/CentOS-*.repo | ||
RUN yum upgrade -y | ||
RUN yum install -y git openssh cairo-devel mercurial wget redhat-lsb-core openssh-server which | ||
|
||
|
@@ -14,7 +17,7 @@ RUN ssh-keygen -f /etc/ssh/ssh_host_ed25519_key -N '' -t ed25519 | |
RUN yum groupinstall -y 'Development Tools' | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ FROM debian:bookworm | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
RUN apt-get install -y wget curl apt-utils git openssh-server libcairo2-dev mercurial build-essential lsb-release | ||
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ FROM debian:bullseye | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
RUN apt-get install -y wget curl apt-utils git openssh-server libcairo2-dev mercurial build-essential lsb-release | ||
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM debian:buster | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN apt-get update | ||
RUN apt-get install -y --allow-unauthenticated debian-archive-keyring | ||
RUN apt-get update | ||
|
@@ -11,7 +11,7 @@ RUN apt-get install -y wget curl apt-utils git openssh-server libcairo2-dev merc | |
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ FROM debian:trixie | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
RUN apt-get install -y wget curl apt-utils git openssh-server libcairo2-dev mercurial build-essential lsb-release | ||
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM rockylinux:8 | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN yum upgrade -y | ||
RUN yum install -y openssh-server | ||
RUN ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa | ||
|
@@ -14,7 +14,7 @@ RUN yum install -y git openssh cairo-devel mercurial ruby-devel wget redhat-lsb- | |
RUN yum groupinstall -y 'Development Tools' | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM rockylinux:9 | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN yum upgrade -y | ||
RUN yum install -y openssh-server | ||
RUN ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa | ||
|
@@ -15,7 +15,7 @@ RUN yum install -y git openssh cairo-devel wget | |
RUN yum groupinstall -y 'Development Tools' | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ FROM ubuntu:18.04 | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
RUN apt-get install -y git openssh-server libcairo2-dev mercurial build-essential lsb-release curl | ||
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ FROM ubuntu:20.04 | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
RUN apt-get install -y git openssh-server libcairo2-dev mercurial build-essential lsb-release curl | ||
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ FROM ubuntu:22.04 | |
MAINTAINER Vladimir Smirnov <[email protected]> | ||
|
||
# Make sure the package repository is up to date. | ||
ARG CACHE_DATE=20240212 | ||
ARG CACHE_DATE=20241015 | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
RUN apt-get install -y git openssh-server libcairo2-dev mercurial build-essential lsb-release curl | ||
RUN mkdir -p /var/run/sshd | ||
|
||
# Install Go and other deps | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.22.0.linux-amd64.tar.gz | ||
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.23.2.linux-amd64.tar.gz | ||
RUN tar -xf /tmp/go.tar.gz -C /usr/local/ | ||
RUN rm -f /tmp/go.tar.gz | ||
RUN mkdir -p /root/go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters