mirror of
https://github.com/System-End/stickers.git
synced 2026-04-19 22:05:10 +00:00
8 lines
242 B
Docker
8 lines
242 B
Docker
FROM ruby:3.3-alpine
|
|
RUN apk add --no-cache build-base
|
|
WORKDIR /app
|
|
COPY Gemfile Gemfile.lock ./
|
|
RUN bundle install --deployment --without development test
|
|
COPY . .
|
|
EXPOSE 9292
|
|
CMD ["bundle", "exec", "puma", "-p", "9292", "-e", "production"]
|