-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
63 lines (47 loc) · 1.41 KB
/
Dockerfile
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
FROM ruby:3.3.6-alpine as base
WORKDIR /app
# zip: needed for creating reports
RUN apk --no-cache add \
nodejs \
postgresql-client \
zip
# Ensure latest rubygems is installed
RUN gem update --system
FROM base as builder
# Some app dependencies
RUN apk --no-cache add \
build-base \
ruby-dev \
postgresql-dev \
git \
yarn
COPY .ruby-version Gemfile* package.json yarn.lock ./
# Install gems and node packages
RUN bundle config deployment true && \
bundle config without development test && \
bundle install --jobs 4 --retry 3 && \
yarn install --frozen-lockfile --production
COPY . .
# assets:non_digested required for static error pages
RUN RAILS_ENV=production SECRET_KEY_BASE_DUMMY=1 \
bundle exec rake assets:precompile assets:non_digested
# Cleanup to save space in the production image
RUN rm -rf log/* tmp/* /tmp && \
rm -rf /usr/local/bundle/cache
# Build runtime image
FROM base
RUN addgroup -g 1000 -S appgroup && \
adduser -u 1000 -S appuser -G appgroup
# Copy files generated in the builder image
COPY --from=builder /app /app
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
RUN mkdir -p log tmp tmp/pids
RUN chown -R appuser:appgroup ./*
USER 1000
# expect/add ping environment variables
ARG APP_GIT_COMMIT
ARG APP_BUILD_DATE
ARG APP_BUILD_TAG
ENV APP_GIT_COMMIT=${APP_GIT_COMMIT}
ENV APP_BUILD_DATE=${APP_BUILD_DATE}
ENV APP_BUILD_TAG=${APP_BUILD_TAG}