(unofficial) docker images for the red programming language https://www.red-lang.org/
5.7K
To try red, pull this image & run docker run -it kskarthik/redlang:0.6.4
Now, you will enter the container, You can run the red REPL with command red
Dockerfile:
FROM debian:buster-slim
WORKDIR /
RUN apt update &&\
dpkg --add-architecture i386 &&\
apt-get update &&\
apt-get install -y libc6:i386 libcurl4:i386 \
libgtk-3-0:i386 libgdk-pixbuf2.0-0:i386 wget
RUN wget https://static.red-lang.org/dl/linux/red-064 -O red && \
chmod +x red && \
mv red /usr/local/bin/
ENTRYPOINT bash
Content type
Image
Digest
Size
145.9 MB
Last updated
about 5 years ago
docker pull kskarthik/redlang:0.6.4