forked from judge0/compilers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
31 lines (26 loc) · 1.05 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Check for latest version here: https://hub.docker.com/_/buildpack-deps?tab=tags&page=1&name=buster&ordering=last_updated
FROM buildpack-deps:oracular
RUN apt-get -y update && apt-get -y upgrade
RUN apt-get -y install ruby-full
RUN apt-get -y install python3.13-full
RUN apt-get -y install octave
RUN apt-get -y install openjdk-23-jdk
RUN apt-get -y install nodejs npm
RUN apt -y install rustc
RUN apt-get -y install golang-go
RUN npm install -g typescript
RUN apt-get -y install sqlite3
RUN apt-get install -y --no-install-recommends cron libpq-dev sudo iputils-ping git libcap-dev
RUN set -xe && \
apt-get install -y --no-install-recommends locales && \
echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \
locale-gen
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
RUN set -xe && \
git clone https://github.com/judge0/isolate.git /tmp/isolate && \
cd /tmp/isolate && \
make -j$(nproc) install && \
rm -rf /tmp/*
ENV BOX_ROOT /var/local/lib/isolate
LABEL maintainer="Inzhenerka.Tech <[email protected]>"
LABEL version="1.4.0-plus"