skip to Main Content

Run tests using docker compose in scala – Debian

Trying to execute integration tests using docker. Below is the Dockerfile: FROM openjdk:8u232 ARG SBT_VERSION=1.2.8 # Install sbt RUN curl -L -o sbt-$SBT_VERSION.deb https://dl.bintray.com/sbt/debian/sbt-$SBT_VERSION.deb && dpkg -i sbt-$SBT_VERSION.deb && rm sbt-$SBT_VERSION.deb && apt-get update && apt-get install sbt && sbt…

VIEW QUESTION
Back To Top
Search