aboutsummaryrefslogtreecommitdiff
path: root/lib/docker/debian.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/docker/debian.Dockerfile')
-rw-r--r--lib/docker/debian.Dockerfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/docker/debian.Dockerfile b/lib/docker/debian.Dockerfile
new file mode 100644
index 0000000..52652a4
--- /dev/null
+++ b/lib/docker/debian.Dockerfile
@@ -0,0 +1,23 @@
+FROM debian:latest AS base
+
+COPY . /home/rstar
+
+RUN apt-get update
+RUN apt-get install -y git build-essential libreadline7
+RUN /home/rstar/bin/rstar install -p /home/raku
+RUN apt-get -y remove git build-essential
+RUN apt-get -y autoremove
+
+FROM debian:latest
+
+COPY --from=base /home/raku /usr/local
+COPY --from=base /lib /lib
+
+ENV PATH=/usr/local/share/perl6/site/bin:$PATH
+ENV PATH=/usr/local/share/perl6/vendor/bin:$PATH
+ENV PATH=/usr/local/share/perl6/core/bin:$PATH
+ENV PERL6LIB=/app/lib
+
+WORKDIR /app
+
+CMD [ "raku" ]