mirror of
https://github.com/e621ng/dtext_rb.git
synced 2025-03-04 03:03:03 -05:00
10 lines
155 B
Docker
10 lines
155 B
Docker
FROM ruby:3.1.3-alpine3.17
|
|
|
|
RUN apk --no-cache add build-base ragel
|
|
|
|
COPY . .
|
|
RUN gem install bundler:2.4.1 && \
|
|
bundle install -j$(nproc)
|
|
|
|
WORKDIR /app
|