-
Notifications
You must be signed in to change notification settings - Fork 116
/
Dockerfile.dev
49 lines (34 loc) · 1.06 KB
/
Dockerfile.dev
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
ARG RUBY_VERSION=3.3.5
ARG NODE_VERSION=22.7.0
# Use Node image so we can pull the binaries from here.
FROM node:$NODE_VERSION AS node
# Ruby build image.
FROM ruby:${RUBY_VERSION}-slim
RUN apt-get update -qq && \
apt-get install -y build-essential libssl-dev libpq-dev vim git libsasl2-dev curl && \
rm -rf /var/lib/apt/lists/*
# Copy node binaries from node image.
COPY --from=node /usr/local /usr/local
COPY --from=node /opt /opt
# Setup environment variables.
ENV WORK_ROOT=/src
ENV APP_HOME=$WORK_ROOT/app/
ENV LANG=C.UTF-8
# Create app directory.
RUN mkdir -p $APP_HOME
# Setup work directory.
WORKDIR $APP_HOME
RUN gem install foreman bundler
# Copy dependencies files and install libraries.
COPY --link package.json yarn.lock .yarnrc.yml ./
RUN corepack enable
RUN yarn install --immutable
COPY --link Gemfile Gemfile.lock ./
RUN bundle install -j 4
COPY --link . .
RUN yarn build
# Entrypoint prepares the database.
ENTRYPOINT ["./bin/docker-entrypoint"]
# Start the server by default, this can be overwritten at runtime
EXPOSE 3000
CMD ["./bin/dev"]