WOW! added jdk6 base images!

This commit is contained in:
STAM 2020-02-06 17:47:06 +03:00
parent e4255f48a4
commit 6ccd3a9c93
12 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1 @@
repository: epicmorg/prod

View File

@ -0,0 +1,3 @@
.git
scripts
.idea

View File

@ -0,0 +1,20 @@
FROM epicmorg/devel
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# installing java6
##################################################################
RUN wget -qO - http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems | apt-key add - && \
echo 'deb http://repos.azulsystems.com/debian stable main' > /etc/apt/sources.list.d/zulu.list && \
apt-get update -y && \
apt-get install -y --allow-unauthenticated zulu-6 && \
java -version
##################################################################
# cleaninig up
##################################################################
RUN apt clean -y && \
apt autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb

View File

@ -0,0 +1,5 @@
all: emgprod
emgprod:
docker build --compress -t epicmorg/devel:jdk6 .
docker push epicmorg/devel:jdk6

View File

@ -0,0 +1 @@
repository: epicmorg/prod

View File

@ -0,0 +1,3 @@
.git
scripts
.idea

View File

@ -0,0 +1,20 @@
FROM epicmorg/edge
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# installing java6
##################################################################
RUN wget -qO - http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems | apt-key add - && \
echo 'deb http://repos.azulsystems.com/debian stable main' > /etc/apt/sources.list.d/zulu.list && \
apt-get update -y && \
apt-get install -y --allow-unauthenticated zulu-6 && \
java -version
##################################################################
# cleaninig up
##################################################################
RUN apt clean -y && \
apt autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb

View File

@ -0,0 +1,5 @@
all: emgprod
emgprod:
docker build --compress -t epicmorg/edge:jdk6 .
docker push epicmorg/edge:jdk6

View File

@ -0,0 +1 @@
repository: epicmorg/prod

View File

@ -0,0 +1,3 @@
.git
scripts
.idea

View File

@ -0,0 +1,20 @@
FROM epicmorg/prod
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# installing java6
##################################################################
RUN wget -qO - http://repos.azulsystems.com/RPM-GPG-KEY-azulsystems | apt-key add - && \
echo 'deb http://repos.azulsystems.com/debian stable main' > /etc/apt/sources.list.d/zulu.list && \
apt-get update -y && \
apt-get install -y --allow-unauthenticated zulu-6 && \
java -version
##################################################################
# cleaninig up
##################################################################
RUN apt clean -y && \
apt autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb

View File

@ -0,0 +1,5 @@
all: emgprod
emgprod:
docker build --compress -t epicmorg/prod:jdk6 .
docker push epicmorg/prod:jdk6