-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathDockerfile
37 lines (27 loc) · 934 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM zonemaster/engine:local AS build
RUN apk add --no-cache \
make \
perl-app-cpanminus \
perl-json-xs \
perl-lwp-protocol-https \
perl-mojolicious \
perl-test-deep \
perl-test-differences \
perl-try-tiny \
&& cpanm --notest --no-wget --from https://cpan.metacpan.org/ \
JSON::Validator
ARG version
COPY ./Zonemaster-CLI-${version}.tar.gz ./Zonemaster-CLI-${version}.tar.gz
RUN cpanm --notest --no-wget \
./Zonemaster-CLI-${version}.tar.gz
FROM zonemaster/engine:local
RUN apk add --no-cache \
perl-json-xs \
perl-try-tiny
COPY --from=build /usr/local/bin/zonemaster-cli /usr/local/bin/zonemaster-cli
# Include all the Perl modules we built
COPY --from=build /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/site_perl
COPY --from=build /usr/local/share/perl5/site_perl /usr/local/share/perl5/site_perl
USER nobody:nogroup
ENTRYPOINT [ "zonemaster-cli" ]
CMD [ "--help" ]