We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0c5db7 commit a4d5243Copy full SHA for a4d5243
Dockerfile
@@ -1,6 +1,6 @@
1
# This is the official Squib Docker image.
2
#
3
-FROM ruby:3.0-slim
+FROM ruby:3.2-slim
4
WORKDIR /usr/src/app
5
6
LABEL org.squib.url=http://squib.rocks \
@@ -13,6 +13,8 @@ RUN apt-get update && \
13
ruby-dev \
14
ruby \
15
ruby-gdk-pixbuf2 \
16
+ libgdk-pixbuf2.0-dev \
17
+ librsvg2-dev \
18
git \
19
fonts-open-sans
20
@@ -21,7 +23,7 @@ COPY . /usr/src/app
21
23
RUN rm -f /usr/src/app/Gemfile.lock
22
24
RUN gem install bundler
25
RUN bundle install
-RUN bundle exec rake install
26
+# RUN bundle exec rake install
27
-# ENTRYPOINT [ "sh" ]
28
+ENTRYPOINT [ "bash" ]
29
0 commit comments