-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-3.5.0' into language-reference-stable
- Loading branch information
Showing
1,437 changed files
with
34,867 additions
and
9,066 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM ubuntu:22.04 | ||
|
||
# The default locale is "POSIX" which is just ASCII. | ||
ENV LANG C.UTF-8 | ||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV TZ Europe/Zurich | ||
|
||
# Add packages to image, set default JDK version | ||
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
# Use a PPA to get Java 17 | ||
apt-get install -y software-properties-common && add-apt-repository ppa:openjdk-r/ppa && \ | ||
apt-get install -y bash curl git ssh htop nano vim-tiny zile \ | ||
openjdk-8-jdk-headless \ | ||
openjdk-17-jdk-headless \ | ||
openjdk-21-jdk-headless && \ | ||
(curl -fsSL https://deb.nodesource.com/setup_18.x | bash -) && \ | ||
apt-get install -y nodejs | ||
|
||
|
||
# Install sbt | ||
ENV SBT_HOME /usr/local/sbt | ||
ENV PATH ${SBT_HOME}/bin:${PATH} | ||
ENV SBT_VERSION 1.9.0 | ||
RUN curl -sL "https://github.com/sbt/sbt/releases/download/v$SBT_VERSION/sbt-$SBT_VERSION.tgz" | gunzip | tar -x -C /usr/local |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
interval: weekly | ||
assignees: | ||
- hamzaremmal | ||
reviewers: | ||
- hamzaremmal |
This file contains 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
Oops, something went wrong.