Skip to content

Instantly share code, notes, and snippets.

@tutmosisII
Created November 1, 2020 14:21
Show Gist options
  • Save tutmosisII/41d337a8d7629b8fb775bd7c5c66818e to your computer and use it in GitHub Desktop.
Save tutmosisII/41d337a8d7629b8fb775bd7c5c66818e to your computer and use it in GitHub Desktop.
Instalación SBT en Docker
#Paquete Adicionales para Scala
# Herramienta de construcción SBT
RUN echo "deb https://dl.bintray.com/sbt/debian /" | sudo tee -a /etc/apt/sources.list.d/sbt.list \
&& curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x2EE0EA64E40A89B84B2DF73499E82A75642AC823" | sudo apt-key add \
&& sudo apt-get update \
&& sudo apt-get -y install sbt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment