File tree Expand file tree Collapse file tree 2 files changed +278
-0
lines changed Expand file tree Collapse file tree 2 files changed +278
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,53 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y texlive-latex-extra
121
121
# ## COBOL
122
122
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gnucobol
123
123
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
+
124
171
# ############################################################################################
125
172
COPY . /coderunner
126
173
WORKDIR "/coderunner"
You can’t perform that action at this time.
0 commit comments