This commit is contained in:
2026-06-12 15:40:12 -04:00
commit 521653e5de
53 changed files with 8635 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM ruby:3.3-slim
# Install dependencies needed for gems and mysql2
RUN apt-get update -qq && apt-get install -y \
build-essential \
default-libmysqlclient-dev \
git \
pkg-config
WORKDIR /app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
# Start the Puma server
CMD ["bundle", "exec", "puma", "-p", "4567"]