Last active
September 15, 2020 12:40
-
-
Save kongzii/88d334b874a6e1164b6fc0df60fcded9 to your computer and use it in GitHub Desktop.
Simple dockerfile for scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
RUN apt-get update \ | |
&& apt-get upgrade -y | |
RUN apt-get install -y curl scala | |
WORKDIR /src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment