-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
69 lines (52 loc) · 1.6 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
64
65
66
67
68
69
# Build builder image
FROM ruby:3.3.5-alpine as base
WORKDIR /app
# tzdata: required to set timezone
RUN apk --no-cache add \
tzdata \
postgresql-client
# Ensure latest rubygems is installed
RUN gem update --system
FROM base as builder
# Install dependencies
RUN apk --no-cache add \
ruby-dev \
build-base \
postgresql-dev \
yarn
# Copy required files
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 all files to /app (except what is defined in .dockerignore)
COPY . .
# Precompile assets
RUN RAILS_ENV=production SECRET_KEY_BASE_DUMMY=1 \
bundle exec rails assets:precompile
# Copy govuk assets
RUN cp -r node_modules/govuk-frontend/dist/govuk/assets/. public/assets/
# Cleanup to save space in the production image
RUN rm -rf node_modules log/* tmp/* /tmp && \
rm -rf /usr/local/bundle/cache
# Build runtime image
FROM base
# Add non-root user and group with alpine first available uid, 1000
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/
# Create log and tmp
RUN mkdir -p log tmp
RUN chown -R appuser:appgroup ./*
# Set user
USER 1000
ARG APP_BUILD_DATE
ARG APP_BUILD_TAG
ARG APP_GIT_COMMIT
ENV APP_BUILD_DATE ${APP_BUILD_DATE}
ENV APP_BUILD_TAG ${APP_BUILD_TAG}
ENV APP_GIT_COMMIT ${APP_GIT_COMMIT}