postal/ubuntu/Dockerfile

36 lines
1.1 KiB
Docker
Raw Normal View History

2019-01-31 04:55:57 +01:00
FROM ruby:2.6
RUN curl -L https://github.com/wrouesnel/p2cli/releases/download/r5/p2 -o /usr/local/bin/p2 \
&& chmod +x /usr/local/bin/p2
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \
&& apt-get install -y nodejs
2017-04-26 22:35:49 +02:00
2018-08-02 04:45:32 +02:00
RUN apt-get -y update \
2019-07-15 03:33:45 +02:00
&& apt-get -y install --no-install-recommends nodejs mariadb-client git-core libcap2-bin \
&& git clone https://github.com/atech/postal.git /opt/postal \
2017-09-12 05:01:31 +02:00
&& rm -rf /var/lib/apt/lists/* \
&& gem install bundler \
&& gem install procodile \
2018-08-03 03:53:27 +02:00
&& gem install tzinfo-data \
2018-08-02 04:45:32 +02:00
&& useradd -r -d /opt/postal -s /bin/bash postal \
2017-09-12 05:01:31 +02:00
&& chown -R postal:postal /opt/postal/ \
2018-05-27 23:40:25 +02:00
&& /opt/postal/bin/postal bundle /opt/postal/vendor/bundle \
2018-08-02 04:45:32 +02:00
&& 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
RUN setcap 'cap_net_bind_service=+ep' /usr/local/bin/ruby
2017-04-27 11:38:13 +02:00
2017-05-06 04:31:47 +02:00
## Stick in required files
ADD src/docker-entrypoint.sh /docker-entrypoint.sh
ADD src/templates /templates
2017-04-26 22:38:01 +02:00
2017-04-27 10:48:51 +02:00
## Expose
EXPOSE 5000
2017-04-27 09:50:07 +02:00
## Startup
# ENV RUBYOPT --jit
ENTRYPOINT ["/bin/bash", "-c", "/docker-entrypoint.sh ${*}", "--"]