Browse code

remove fedora-23 because eol

Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
(cherry picked from commit ef98091a901cd9926d307ed622de088c90da2ef3)
Signed-off-by: Victor Vieux <vieux@docker.com>

Andrew Hsu authored on 2016/12/16 02:44:34
Showing 3 changed files
... ...
@@ -218,6 +218,7 @@ To manually remove all plugins and resolve this problem, take the following step
218 218
 - Deprecate unversioned API endpoints [#28208](https://github.com/docker/docker/pull/28208)
219 219
 - Remove Ubuntu 15.10 (Wily Werewolf) as supported platform. Ubuntu 15.10 is EOL, and no longer receives updates [#27042](https://github.com/docker/docker/pull/27042)
220 220
 - Remove Fedora 22 as supported platform. Fedora 22 is EOL, and no longer receives updates [#27432](https://github.com/docker/docker/pull/27432)
221
+- Remove Fedora 23 as supported platform. Fedora 23 is EOL, and no longer receives updates [#29455](https://github.com/docker/docker/pull/29455)
221 222
 - Deprecate the `repo:shortid` syntax on `docker pull` [#27207](https://github.com/docker/docker/pull/27207)
222 223
 - Deprecate backing filesystem without `d_type` for overlay and overlay2 storage drivers [#27433](https://github.com/docker/docker/pull/27433)
223 224
 - Deprecate `MAINTAINER` in Dockerfile [#25466](https://github.com/docker/docker/pull/25466)
224 225
deleted file mode 100644
... ...
@@ -1,19 +0,0 @@
1
-#
2
-# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/rpm/amd64/generate.sh"!
3
-#
4
-
5
-FROM fedora:23
6
-
7
-RUN dnf -y upgrade
8
-RUN dnf install -y @development-tools fedora-packager
9
-RUN dnf install -y btrfs-progs-devel device-mapper-devel glibc-static libseccomp-devel libselinux-devel libtool-ltdl-devel pkgconfig selinux-policy selinux-policy-devel sqlite-devel systemd-devel tar git cmake vim-common
10
-
11
-ENV GO_VERSION 1.7.3
12
-RUN curl -fSL "https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz" | tar xzC /usr/local
13
-ENV PATH $PATH:/usr/local/go/bin
14
-
15
-ENV AUTO_GOPATH 1
16
-
17
-ENV DOCKER_BUILDTAGS pkcs11 seccomp selinux
18
-ENV RUNC_BUILDTAGS seccomp selinux
19
-
... ...
@@ -4,8 +4,8 @@ set -e
4 4
 # usage: ./generate.sh [versions]
5 5
 #    ie: ./generate.sh
6 6
 #        to update all Dockerfiles in this directory
7
-#    or: ./generate.sh
8
-#        to only update fedora-23/Dockerfile
7
+#    or: ./generate.sh centos-7
8
+#        to only update centos-7/Dockerfile
9 9
 #    or: ./generate.sh fedora-newversion
10 10
 #        to create a new folder and a Dockerfile within it
11 11