-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDockerfile.prod
52 lines (40 loc) · 980 Bytes
/
Dockerfile.prod
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
# BUILD IMAGE
FROM ruby:3.3.2-alpine as builder
ENV RAILS_ENV=production
WORKDIR /app
RUN apk add --update --no-cache \
alpine-sdk \
nodejs \
tzdata \
yarn \
shared-mime-info \
gcompat \
postgresql-dev
RUN gem install bundler -v 2.4.7
COPY Gemfile Gemfile.lock ./
RUN bundle config set --local deployment 'true'
RUN bundle check || bundle install --jobs=2 \
&& rm -rf vendor/bundle/ruby/*/cache/*
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN bundle exec rake assets:precompile
# FINAL IMAGE
FROM ruby:3.3.2-alpine
ENV RAILS_ENV=development
ENV EDITOR=vim
WORKDIR /app
RUN apk add --update --no-cache \
curl \
git \
nodejs \
tzdata \
shared-mime-info \
vim \
postgresql-dev \
&& rm -rf .git/
COPY --from=builder /app .
RUN bundle config --local path vendor/bundle \
&& bundle config --local without development:test:assets
EXPOSE 3000
ENTRYPOINT ["./entrypoints/docker-entrypoint.sh"]