-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDockerfile
60 lines (44 loc) · 1.34 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
FROM ruby:3.3.5-alpine as base
WORKDIR /app
RUN apk add --no-cache \
postgresql-client \
nodejs \
git \
graphicsmagick
# Ensure latest rubygems is installed
RUN gem update --system
FROM base as builder
RUN apk add --no-cache \
build-base \
ruby-dev \
postgresql-dev
COPY Gemfile* .ruby-version ./
RUN bundle config deployment true && \
bundle config without development test && \
bundle install --jobs 4 --retry 3
COPY . .
RUN RAILS_ENV=production SECRET_KEY_BASE_DUMMY=1 GOVUK_APP_DOMAIN=not_real \
GOVUK_WEBSITE_ROOT=not_real SUPPORT_EMAIL=not_real \
bundle exec rake assets:precompile
# Cleanup to save space in the production image
RUN rm -rf node_modules log/* tmp/* /tmp && \
rm -rf /usr/local/bundle/cache
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
# 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}