1
0
mirror of https://github.com/e621ng/dtext_rb.git synced 2025-03-04 03:03:03 -05:00
dtext_rb/Dockerfile
Earlopain efc5e6c0e5
Switch to standard gem layout
Part of c5bc7d1629

Co-Authored-By: evazion <noizave@gmail.com>
2023-04-03 12:55:51 +02:00

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