Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:16.0.1-jdk-slim-buster
FROM eclipse-temurin:17-jdk-jammy

# Install updates
RUN apt-get update -yq \
Expand All @@ -18,15 +18,15 @@ ENV PATH="${PATH}:/usr/local/go/bin"
# Install dotnet SDK
RUN apt install apt-transport-https dirmngr gnupg ca-certificates -yq \
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
&& echo "deb https://download.mono-project.com/repo/debian stable-buster main" | tee /etc/apt/sources.list.d/mono-official-stable.list \
&& echo "deb https://download.mono-project.com/repo/ubuntu stable-jammy main"| tee /etc/apt/sources.list.d/mono-official-stable.list \
&& apt update -yq \
&& apt install mono-devel -yq

# Install rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

# Install Python
RUN apt-get install -yq python
RUN apt-get install -yq python3 python-is-python3

# Install Kotlin
RUN apt install -yq wget unzip \
Expand All @@ -37,10 +37,8 @@ RUN apt install -yq wget unzip \
ENV PATH $PATH:/usr/lib/kotlinc/bin

# Install PHP
RUN wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \
&& echo "deb https://packages.sury.org/php/ buster main" > /etc/apt/sources.list.d/php.list \
&& apt-get update -yq \
&& apt-get install -y php8.2
RUN apt-get update -yq \
&& apt-get install -yq php php-cli php-common php-xml php-mbstring php-curl

# Setup library
RUN apt-get install -yq chromium
RUN apt-get install -yq chromium-browser