Adding make to the other two Dockerfiles

This commit is contained in:
Gene Liverman 2020-09-18 15:27:42 -04:00
parent b484cc5992
commit 87abab272c
No known key found for this signature in database
GPG key ID: 3AF83985B6C857C6
2 changed files with 16 additions and 3 deletions

View file

@ -17,6 +17,12 @@ COPY docker/docker-entrypoint.sh /usr/local/bin/
ENV LOGFILE=/dev/stdout \
RACK_ENV=production
RUN apt-get update -qq && \
apt-get install -y --no-install-recommends make && \
apt-get clean autoclean && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
RUN gem install vmpooler -v ${vmpooler_version} && \
chmod +x /usr/local/bin/docker-entrypoint.sh