Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM perl:5.34.0
- WORKDIR /app
- EXPOSE 80 80
- RUN groupadd \
- --gid 1000 perl \
- && useradd \
- --uid 1000 \
- --gid perl \
- --shell /bin/bash \
- --create-home perl
- RUN set -ex \
- && apt-get \
- update \
- && apt-get install -y --no-install-recommends \
- software-properties-common \
- dirmngr
- COPY cpanfile cpanfile
- RUN cpanm Mojolicious@"${MOJO_VERSION:-9.22}"
- RUN cpanm < cpanfile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement