-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathDockerfile
63 lines (46 loc) · 1.49 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.5-alpine as base
WORKDIR /app
RUN apk add --no-cache \
postgresql-client \
nodejs \
tzdata
# Ensure latest rubygems is installed
RUN gem update --system
FROM base as builder
RUN apk add --no-cache \
build-base \
ruby-dev \
postgresql-dev \
yarn
COPY Gemfile* .ruby-version package.json yarn.lock ./
RUN bundle config deployment true && \
bundle config without development test && \
bundle install --jobs 4 --retry 3 && \
yarn install --frozen-lockfile --production
COPY . .
RUN RAILS_ENV=production PQ_REST_API_HOST=localhost PQ_REST_API_USERNAME=user PQ_REST_API_PASSWORD=pass \
SECRET_KEY_BASE_DUMMY=1 bundle exec rake 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
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}