Skip to content

Commit

Permalink
Updated dockerfiles for 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Sep 24, 2020
1 parent ed5d01f commit f3b086a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/distributed/tomcat-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ RUN apk add --no-cache git

COPY docker/distributed/tomcat-alpine/server.xml /usr/local/tomcat/conf/server.xml

ARG VERSION=master
ARG VERSION=1.2
RUN git clone --recurse-submodules -b $VERSION https://github.com/cassproject/CASS && \
cd CASS && \
mvn install && \
Expand Down
3 changes: 2 additions & 1 deletion docker/standalone/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ COPY docker/standalone/alpine/config/server.xml /usr/local/tomcat/conf/server.xm

VOLUME /usr/share/elasticsearch/data

ARG VERSION=master
ARG VERSION=1.2
RUN echo $VERSION
RUN git clone --recurse-submodules -b $VERSION https://github.com/cassproject/CASS && \
cd CASS && \
mvn install && \
Expand Down
2 changes: 1 addition & 1 deletion docker/standalone/ubuntu-16.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:16.04
RUN apt-get update;apt-get install -qqy wget curl software-properties-common sudo gawk
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections
ARG VERSION=master
ARG VERSION=1.2
RUN wget https://raw.githubusercontent.com/cassproject/CASS/master/scripts/cassInstall.sh
RUN chmod +x cassInstall.sh
RUN echo $VERSION && /cassInstall.sh $VERSION && rm -rf ~/.m2
Expand Down
2 changes: 1 addition & 1 deletion docker/standalone/ubuntu-18.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:18.04
RUN apt-get update;apt-get install -qqy wget curl software-properties-common sudo gawk
RUN echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections
ARG VERSION=master
ARG VERSION=1.2
RUN wget https://raw.githubusercontent.com/cassproject/CASS/master/scripts/cassInstall.sh
RUN chmod +x cassInstall.sh
RUN echo $VERSION && /cassInstall.sh $VERSION && rm -rf ~/.m2
Expand Down

0 comments on commit f3b086a

Please sign in to comment.