Skip to content

Commit

Permalink
Update go to 1.21.0 and flush cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Civil committed Aug 27, 2023
1 parent 563c04a commit c2ac6a6
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions docker/centos-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAINTAINER Vladimir Smirnov <[email protected]>
USER root

# Make sure the package repository is up to date.
ARG CACHE_DATE=20221209
ARG CACHE_DATE=20230827
RUN yum upgrade -y
RUN yum install -y git openssh cairo-devel mercurial wget redhat-lsb-core openssh-server which

Expand All @@ -14,7 +14,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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/debian-bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ FROM debian:bookworm
MAINTAINER Vladimir Smirnov <[email protected]>

# Make sure the package repository is up to date.
ARG CACHE_DATE=20221209
ARG CACHE_DATE=20230827
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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/debian-bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ FROM debian:bullseye
MAINTAINER Vladimir Smirnov <[email protected]>

# Make sure the package repository is up to date.
ARG CACHE_DATE=20221209
ARG CACHE_DATE=20230827
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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/debian-buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:buster
MAINTAINER Vladimir Smirnov <[email protected]>

# Make sure the package repository is up to date.
ARG CACHE_DATE=20221209
ARG CACHE_DATE=20230827
RUN apt-get update
RUN apt-get install -y --allow-unauthenticated debian-archive-keyring
RUN apt-get update
Expand All @@ -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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/rockylinux-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM rockylinux:8
MAINTAINER Vladimir Smirnov <[email protected]>

# Make sure the package repository is up to date.
ARG CACHE_DATE=20221209
ARG CACHE_DATE=20230827
RUN yum upgrade -y
RUN yum install -y openssh-server
RUN ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa
Expand All @@ -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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/rockylinux-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM rockylinux:9
MAINTAINER Vladimir Smirnov <[email protected]>

# Make sure the package repository is up to date.
ARG CACHE_DATE=20221209
ARG CACHE_DATE=20230827
RUN yum upgrade -y
RUN yum install -y openssh-server
RUN ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa
Expand All @@ -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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu-1804/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=20221209
ARG CACHE_DATE=20230827
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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu-2004/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=20221209
ARG CACHE_DATE=20230827
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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down
4 changes: 2 additions & 2 deletions docker/ubuntu-2204/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=20221209
ARG CACHE_DATE=20230827
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.19.4.linux-amd64.tar.gz
RUN wget -q -O/tmp/go.tar.gz https://go.dev/dl/go1.21.0.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
Expand Down

0 comments on commit c2ac6a6

Please sign in to comment.