-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile.tcie
35 lines (27 loc) · 1.03 KB
/
Dockerfile.tcie
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ruby:3.2.2-slim
LABEL maintainer Travis CI GmbH <[email protected]>
# packages required for bundle install
RUN ( \
apt-get update ; \
# update to deb 10.8
apt-get upgrade -y ; \
apt-get install -y --no-install-recommends git make gcc g++ curl \
&& rm -rf /var/lib/apt/lists/*; \
curl -sLO http://ppa.launchpad.net/rmescandon/yq/ubuntu/pool/main/y/yq/yq_3.1-2_amd64.deb && \
dpkg -i yq_3.1-2_amd64.deb && \
rm -f yq_3.1-2_amd64.deb; \
)
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1;
RUN mkdir -p /app
WORKDIR /app
COPY Gemfile /app
COPY Gemfile.lock /app
RUN gem install bundler -v '2.3.7'
ARG bundle_gems__contribsys__com
RUN bundle config https://gems.contribsys.com/ $bundle_gems__contribsys__com \
&& bundle install --without test \
&& bundle config --delete https://gems.contribsys.com/
# Copy app files into app folder
COPY . /app
CMD bundle exec je sidekiq -c 25 -r ./lib/travis/live/pusher.rb -q pusher-live live