forked from rubyforgood/homeward-tails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerfile
37 lines (28 loc) · 937 Bytes
/
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
# Use the official Ruby image as a base
FROM ruby:3.3.0-slim
# Install dependencies
RUN apt-get update -qq && apt-get install -y \
nodejs \
postgresql-client \
build-essential \
libpq-dev \
chromium-driver
# Set up working directory
WORKDIR /petrescue
# Copy Gemfile and Gemfile.lock before other files to leverage Docker's caching mechanism
COPY Gemfile /petrescue/Gemfile
COPY Gemfile.lock /petrescue/Gemfile.lock
# Install gems
RUN gem install bundler && bundle install
# Copy the rest of the application code
COPY . /petrescue
# Precompile assets (optional for development, but useful for production)
RUN bundle exec rails assets:precompile
# Add a script to be executed every time the container starts.
COPY entrypoint.sh /usr/bin/
RUN chmod +x /usr/bin/entrypoint.sh
# Expose port 3000 to the Docker host
EXPOSE 3000
# Start the Rails server
ENTRYPOINT ["entrypoint.sh"]
CMD ["rails", "server", "-b", "0.0.0.0"]