What's wrong with this Dockerfile?

FROM openjdk:8 as build ENV SBT_VERSION "1.5.8" ENV APP_HOME /service RUN \ apt-get update && \ apt-get install apt-transport-https curl gnupg -yqq && \ echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | tee /etc/apt/sources.list.d/sbt.list && \ echo "deb https://repo.scala-sbt.org/scalasbt/debian /" | tee /etc/apt/sources.list.d/sbt_old.list && \ curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | gpg –no-default-keyring –keyring gnupg-ring:/etc/apt/trusted.gpg.d/scalasbt-release.gpg –import && \ chmod… Read More What's wrong with this Dockerfile?