Updated Dockerfile to Alpine 3.10 with Ruby 2.6.5

This commit is contained in:
ducksecops
2019-10-30 22:16:03 +00:00
committed by GitHub
parent b7acbfe8b6
commit 2f26ddf156
+2 -2
View File
@@ -1,4 +1,4 @@
FROM ruby:2.6.5-alpine3.9 AS builder
FROM ruby:2.6.5-alpine3.10 AS builder
LABEL maintainer="Rapid7"
ARG BUNDLER_ARGS="--jobs=8 --without development test coverage"
@@ -36,7 +36,7 @@ RUN apk add --no-cache \
&& chmod -R a+r /usr/local/bundle
FROM ruby:2.6.2-alpine3.9
FROM ruby:2.6.5-alpine3.10
LABEL maintainer="Rapid7"
ENV APP_HOME=/usr/src/metasploit-framework