We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb9214f commit 04a56ffCopy full SHA for 04a56ff
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ruby:alpine
+FROM ruby:3.4-alpine
2
LABEL maintainer="[email protected]"
3
LABEL description="Command-line tool to query IMAP servers, collect stats etc."
4
@@ -7,11 +7,12 @@ ADD . /imapcli
7
RUN apk add --no-cache git build-base && \
8
gem update --system && \
9
cd imapcli && \
10
- # bundle config set --local without development test && \
+ bundle config set --local without development test && \
11
+ bundle config set --local deployment true && \
12
bundle install && \
13
apk del build-base && \
14
rm -rf /var/cache/apk/*
15
16
WORKDIR /imapcli
-ENTRYPOINT ["exe/imapcli"]
17
+ENTRYPOINT ["bundle", "exec", "exe/imapcli"]
18
0 commit comments