We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdb6bdb commit d55dd68Copy full SHA for d55dd68
util/Dockerfile
@@ -0,0 +1,33 @@
1
+FROM rakudo-star:latest
2
+
3
+RUN buildDeps=' \
4
+ build-essential \
5
+ cpanminus \
6
+ ' \
7
+ runtimeDeps=' \
8
+ graphviz \
9
+ make \
10
+ ruby-sass \
11
12
+ testDeps=' \
13
+ aspell \
14
15
+ \
16
+ && set -x \
17
18
+ && apt-get update \
19
+ && apt-get --yes --no-install-recommends install $buildDeps $runtimeDeps $testDeps \
20
+ && rm -rf /var/lib/apt/lists/* \
21
22
+ && cpanm -vn Mojolicious \
23
+ && zef install Test::META \
24
25
+ && n=/usr/local/bin/n \
26
+ && curl -fsSL https://raw.githubusercontent.com/tj/n/master/bin/n > "$n" \
27
+ && chmod +x "$n" \
28
+ && n stable
29
30
+WORKDIR /perl6/doc
31
+EXPOSE 3000
32
33
+CMD make test && make html && ./app-start
0 commit comments