summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-02-12 11:42:15 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-02-12 11:42:15 -0500
commite1a93f9362c759ca5e240d412794975763569fb7 (patch)
tree4610927f17c22ee60dc559db6d30f57095e4b315
parent6e5099f4af4b1d9efa40dee2573ef11c50a77a4b (diff)
downloaddocker-base-2.0.0.tar.gz
Update to centos7HEAD2.0.0master
-rw-r--r--Dockerfile3
-rw-r--r--LATEST2
-rwxr-xr-xetc/pkgs/001-gcc.sh4
-rwxr-xr-xetc/pkgs/004-nodejs.sh3
4 files changed, 8 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 03584a3..9036ec2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM centos:6.9
+FROM centos:7
LABEL maintainer="jhunk@stsci.edu" \
vendor="Space Telescope Science Institute"
@@ -33,6 +33,7 @@ RUN yum install -y epel-release \
&& yum install -y \
autoconf \
automake \
+ bzip2 \
bzip2-devel \
gcc \
gcc-c++ \
diff --git a/LATEST b/LATEST
index 88c5fb8..227cea2 100644
--- a/LATEST
+++ b/LATEST
@@ -1 +1 @@
-1.4.0
+2.0.0
diff --git a/etc/pkgs/001-gcc.sh b/etc/pkgs/001-gcc.sh
index 9cce7b0..1c5f3e7 100755
--- a/etc/pkgs/001-gcc.sh
+++ b/etc/pkgs/001-gcc.sh
@@ -2,8 +2,8 @@
set -xe
name=gcc
-version=8.2.0
-url=http://mirrors-usa.go-parts.com/gcc/releases/${name}-${version}/${name}-${version}.tar.gz
+version=8.4.0
+url=http://mirrors.concertpass.com/gcc/releases/${name}-${version}/${name}-${version}.tar.gz
src=${name}-${version}
bld=${src}_build
diff --git a/etc/pkgs/004-nodejs.sh b/etc/pkgs/004-nodejs.sh
index 1e68cca..4938220 100755
--- a/etc/pkgs/004-nodejs.sh
+++ b/etc/pkgs/004-nodejs.sh
@@ -1,6 +1,9 @@
#!/bin/bash
set -xe
+# Disabled
+exit 0
+
name=node
version=v10.15.0
srcdir=${name}-${version}