mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
Merge pull request #1794 from shaman007/issue-1793
Add apt-get upgrade to Dockerfiles
This commit is contained in:
commit
8ad5afe216
2 changed files with 6 additions and 2 deletions
|
|
@ -12,7 +12,9 @@ ENV SIDEKIQ_PASSWORD=password
|
||||||
# Resolving sqlite3 error
|
# Resolving sqlite3 error
|
||||||
ENV PGSSENCMODE=disable
|
ENV PGSSENCMODE=disable
|
||||||
|
|
||||||
RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
RUN apt-get update -qq \
|
||||||
|
&& DEBIAN_FRONTEND=noninteractive apt-get upgrade -qq \
|
||||||
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
wget \
|
wget \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,9 @@ ENV RAILS_LOG_TO_STDOUT=true
|
||||||
ENV RAILS_PORT=3000
|
ENV RAILS_PORT=3000
|
||||||
ENV RAILS_ENV=production
|
ENV RAILS_ENV=production
|
||||||
|
|
||||||
RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
RUN apt-get update -qq \
|
||||||
|
&& DEBIAN_FRONTEND=noninteractive apt-get upgrade -qq \
|
||||||
|
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
wget \
|
wget \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue