Skip to content

Commit

Permalink
update container internally
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed Mar 19, 2024
1 parent f573087 commit e665f8f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ ENV RUBYGEM_MODULESYNC=${RUBYGEM_MODULESYNC:-3.2.0}
COPY voxbox/Gemfile /
COPY Dockerfile /

RUN bundle config set path.system true && \
bundle install --gemfile=/Gemfile
RUN apt update && apt upgrade -y \
&& apt autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& bundle config set path.system true \
&& bundle install --gemfile=/Gemfile

WORKDIR /repo

Expand Down

0 comments on commit e665f8f

Please sign in to comment.