Refreshing

This commit is contained in:
Ryan Williams
2022-03-15 20:59:43 -07:00
committed by GitHub
parent f34f5689d0
commit f5d59d1284
+9 -2
View File
@@ -2,13 +2,20 @@ FROM ruby:3.1.1-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
gnupg2 \
curl \
less \
git \
libpq-dev \
postgresql-client \
git \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENV LANG=C.UTF-8 \
BUNDLE_JOBS=4 \
BUNDLE_RETRY=3
RUN gem update --system
RUN gem install bundler:2.3.8
RUN gem install bundler
WORKDIR /usr/src/app