Skip to content

Commit 46d5e89

Browse files
added multiple languages
1 parent baf637b commit 46d5e89

File tree

2 files changed

+278
-0
lines changed

2 files changed

+278
-0
lines changed

Dockerfile

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,53 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y texlive-latex-extra
121121
### COBOL
122122
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gnucobol
123123

124+
### Fortran
125+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gfortran
126+
127+
### Algol
128+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y algol68g
129+
130+
### APL
131+
RUN curl -O https://www.dyalog.com/uploads/php/download.dyalog.com/download.php?file=19.0/linux_64_19.0.50027_unicode.x86_64.deb \
132+
&& dpkg -i linux_64_19.0.50027_unicode.x86_64.deb \
133+
&& rm linux_64_19.0.50027_unicode.x86_64.deb
134+
135+
### Prolog
136+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y swi-prolog
137+
138+
### Forth
139+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gforth
140+
141+
### Pascal
142+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y fpc
143+
144+
145+
### OCaml
146+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y ocaml
147+
148+
### Scheme
149+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y guile-3.0
150+
151+
### Smalltalk
152+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gnu-smalltalk
153+
154+
### Prolog
155+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y swi-prolog
156+
157+
### Groovy
158+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y groovy
159+
160+
### Scala
161+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y scala
162+
163+
### Racket
164+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y racket
165+
166+
### Tcl
167+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tcl
168+
169+
170+
124171
#############################################################################################
125172
COPY . /coderunner
126173
WORKDIR "/coderunner"

0 commit comments

Comments
 (0)