Skip to content

Commit

Permalink
Merge pull request #893 from rax-maas/update-base-java-image
Browse files Browse the repository at this point in the history
update base image in Dockerfile
  • Loading branch information
iWebi committed Jul 27, 2022
2 parents ce35407 + 77e9fcf commit 3aa17b1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ Important build profiles to know about:
Blueflood's main artifact is an ['uber jar'](http://stackoverflow.com/questions/11947037/what-is-an-uber-jar), produced
by the [`blueflood-all` module](blueflood-all/pom.xml).

After compiling, you can also build a Docker image with `mvn docker:build`. See
[blueflood-docker](contrib/blueflood-docker) for the Docker-related files.

### Running

You can easily build a ready-to-run Blueflood jar from source:
Expand Down
17 changes: 11 additions & 6 deletions contrib/blueflood-docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
FROM java:8
FROM eclipse-temurin:8

MAINTAINER gaurav.bajaj@rackspace.com
MAINTAINER ryan.stewart@rackspace.com

RUN apt-get update
RUN apt-get install -y netcat
RUN apt-get install -y git
RUN apt-get install -y python python-dev python-pip python-virtualenv && \
RUN apt-get update && apt-get install -y \
git \
netcat \
python3 \
python3-dev \
python3-pip \
python3-virtualenv && \
rm -rf /var/lib/apt/lists/*
RUN pip install cqlsh==4.1.1

RUN pip install cqlsh==6.0.0

COPY ES-Setup /ES-Setup
COPY load.cdl /blueflood.cdl
Expand Down

0 comments on commit 3aa17b1

Please sign in to comment.