Skip to content

Commit

Permalink
added multiple languages
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-dietrich committed Nov 4, 2024
2 parents 53264e9 + 8352c67 commit 5f4a8e7
Show file tree
Hide file tree
Showing 5 changed files with 367 additions and 3 deletions.
47 changes: 47 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,53 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y texlive-latex-extra
### COBOL
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gnucobol

### Fortran
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gfortran

### Algol
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y algol68g

### APL
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 \
&& dpkg -i linux_64_19.0.50027_unicode.x86_64.deb \
&& rm linux_64_19.0.50027_unicode.x86_64.deb

### Prolog
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y swi-prolog

### Forth
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gforth

### Pascal
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y fpc


### OCaml
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y ocaml

### Scheme
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y guile-3.0

### Smalltalk
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y gnu-smalltalk

### Prolog
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y swi-prolog

### Groovy
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y groovy

### Scala
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y scala

### Racket
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y racket

### Tcl
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tcl



#############################################################################################
COPY . /coderunner
WORKDIR "/coderunner"
Expand Down
Loading

0 comments on commit 5f4a8e7

Please sign in to comment.