Skip to content

Commit 207399e

Browse files
committed
Fix COPY command in Dockerfile
Releated to failing Github action run: https://github.com/apptweak/pronto-ruby/actions/runs/21588171817/job/62201397640#step:6:266
1 parent 259aa19 commit 207399e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ ARG CVS_REF=
88

99
LABEL maintainer="DevEx Team <squad_devex@apptweak.com>"
1010
LABEL org.opencontainers.image.source https://github.com/apptweak/pronto-ruby
11-
LABEL org.opencontainers.image.title="AppTweak Pronto Ruby Runner"
12-
LABEL org.opencontainers.image.description="GitHub Action for running Pronto code review automation for Ruby projects"
13-
LABEL org.opencontainers.image.source="https://github.com/apptweak/pronto-ruby"
14-
LABEL org.opencontainers.image.url="https://github.com/apptweak/pronto-ruby"
15-
LABEL org.opencontainers.image.vendor="AppTweak"
16-
LABEL org.opencontainers.image.version=${CVS_REF}
17-
LABEL org.opencontainers.image.created=${BUILD_DATE}
11+
LABEL org.opencontainers.image.title "AppTweak Pronto Ruby Runner"
12+
LABEL org.opencontainers.image.description "GitHub Action for running Pronto code review automation for Ruby projects"
13+
LABEL org.opencontainers.image.source "https://github.com/apptweak/pronto-ruby"
14+
LABEL org.opencontainers.image.url "https://github.com/apptweak/pronto-ruby"
15+
LABEL org.opencontainers.image.vendor "AppTweak"
16+
LABEL org.opencontainers.image.version ${CVS_REF}
17+
LABEL org.opencontainers.image.created ${BUILD_DATE}
1818

1919
RUN apt-get update && \
2020
apt-get install --no-install-recommends -y \
@@ -37,7 +37,7 @@ RUN gem install bundler --version "${BUNDLER_VERSION}"
3737

3838
WORKDIR /runner
3939

40-
COPY Gemfile* .bundle ./
40+
COPY Gemfile* ./
4141

4242
RUN bundle install --retry 4
4343

0 commit comments

Comments
 (0)