generated from rootstrap/rails_api_base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.dev
48 lines (34 loc) · 1.05 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
ARG RUBY_VERSION=3.3.3
ARG NODE_VERSION=20.10.0
ARG YARN_VERSION=1.22.19
# 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 && \
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 ./
RUN yarn install --frozen-lockfile
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"]