Land #10743, reduce docker image size by merging layers

GSoC/Meterpreter_Web_Console
Brent Cook 2018-10-05 11:38:52 -04:00
commit 241e8e92ba
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96
1 changed files with 5 additions and 3 deletions

View File

@ -32,7 +32,10 @@ RUN apk add --no-cache \
&& gem install bundler \
&& bundle install --clean --no-cache --system $BUNDLER_ARGS \
# temp fix for https://github.com/bundler/bundler/issues/6680
&& rm -rf /usr/local/bundle/cache
&& rm -rf /usr/local/bundle/cache \
# needed so non root users can read content of the bundle
&& chmod -R a+r /usr/local/bundle
FROM ruby:2.5.1-alpine3.7
LABEL maintainer="Rapid7"
@ -43,13 +46,12 @@ ENV NMAP_PRIVILEGED=""
COPY --from=builder /usr/local/bundle /usr/local/bundle
COPY . $APP_HOME
RUN chmod -R a+r /usr/local/bundle
RUN apk add --no-cache bash sqlite-libs nmap nmap-scripts nmap-nselibs postgresql-libs python python3 ncurses libcap su-exec
WORKDIR $APP_HOME
RUN /usr/sbin/setcap cap_net_raw,cap_net_bind_service=+eip $(which ruby)
RUN /usr/sbin/setcap cap_net_raw,cap_net_bind_service=+eip $(which nmap)
WORKDIR $APP_HOME
# we need this entrypoint to dynamically create a user
# matching the hosts UID and GID so we can mount something
# from the users home directory. If the IDs don't match