restore ubuntu
This commit is contained in:
parent
03bb71ba84
commit
dc58ee3558
|
@ -1,17 +1,18 @@
|
||||||
FROM ruby:2.4-alpine
|
FROM ruby:2.4
|
||||||
|
|
||||||
RUN apk --no-cache add nodejs mysql-client git bash python libcap py-setuptools py-pip build-base python-dev mariadb-dev \
|
RUN apt-get -y update \
|
||||||
|
&& apt-get -y install --no-install-recommends nodejs mysql-client git-core python-minimal python-pip python-dev libcap2-bin python-setuptools \
|
||||||
&& pip install j2cli \
|
&& pip install j2cli \
|
||||||
&& git clone https://github.com/atech/postal.git /opt/postal \
|
&& git clone https://github.com/atech/postal.git /opt/postal \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& gem install tzinfo-data \
|
|
||||||
&& gem install bundler \
|
&& gem install bundler \
|
||||||
&& gem install procodile \
|
&& gem install procodile \
|
||||||
&& addgroup -S postal \
|
&& useradd -r -d /opt/postal -s /bin/bash postal \
|
||||||
&& adduser -S -G postal -h /opt/postal -s /bin/bash postal \
|
|
||||||
&& chown -R postal:postal /opt/postal/ \
|
&& chown -R postal:postal /opt/postal/ \
|
||||||
&& /opt/postal/bin/postal bundle /opt/postal/vendor/bundle \
|
&& /opt/postal/bin/postal bundle /opt/postal/vendor/bundle \
|
||||||
&& rm -rf /var/cache/apk/*
|
&& apt-get -y purge python-dev git-core \
|
||||||
|
&& apt-get -y autoremove \
|
||||||
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||||
|
|
||||||
## Adjust permissions
|
## Adjust permissions
|
||||||
RUN setcap 'cap_net_bind_service=+ep' /usr/local/bin/ruby
|
RUN setcap 'cap_net_bind_service=+ep' /usr/local/bin/ruby
|
||||||
|
|
Loading…
Reference in New Issue
Block a user