-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathDockerfile
35 lines (26 loc) · 902 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
FROM zonemaster/engine:local as build
RUN apk add --no-cache \
# Only needed for Net::Interface
build-base \
perl-dev \
perl-doc \
perl-lwp-protocol-https \
make \
# Compile-time dependencies
perl-app-cpanminus \
perl-module-install \
&& cpanm --no-wget --from https://cpan.metacpan.org/ \
MooseX::Getopt \
Text::Reflow
ARG version
COPY ./Zonemaster-CLI-${version}.tar.gz ./Zonemaster-CLI-${version}.tar.gz
RUN cpanm --no-wget \
./Zonemaster-CLI-${version}.tar.gz
FROM zonemaster/engine:local
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" ]