aboutsummaryrefslogtreecommitdiff
path: root/lib/docker/debian
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-04-08 14:16:48 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-04-08 14:16:48 +0200
commit6a336f0167393318639b6bc1c9ccf0484219c970 (patch)
tree216ec664235bb02adc56beebab1e5fc7daec7a74 /lib/docker/debian
parent2b8fac1454b3ca9077621420cedda3c228a87466 (diff)
Rewrite the build-docker action
Diffstat (limited to 'lib/docker/debian')
-rw-r--r--lib/docker/debian27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/docker/debian b/lib/docker/debian
deleted file mode 100644
index 2051a27..0000000
--- a/lib/docker/debian
+++ /dev/null
@@ -1,27 +0,0 @@
-FROM debian:{{TAG}} AS base
-
-RUN apt-get update
-RUN apt-get install -y \
- git build-essential libreadline7
-
-COPY . /home/rstar
-
-RUN /home/rstar/bin/rstar install \
- -p /home/raku {{INSTALL_OPTIONS}}
-
-RUN apt-get -y remove git build-essential
-RUN apt-get -y autoremove
-
-FROM debian:{{TAG}}
-
-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" ]