Skip to content

Commit

Permalink
fix: docker file copy point
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuki-joto committed Jul 3, 2022
1 parent e2baeaf commit 652ca2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ WORKDIR $APP_HOME

COPY Gemfile Gemfile.lock ./

COPY . $APP_HOME

# bundle install
RUN gem install bundler:${BUNDLER_VERSION} \
&& bundle config --global jobs ${BUNDLER_JOBS} \
Expand All @@ -53,6 +51,8 @@ RUN gem install bundler:${BUNDLER_VERSION} \
bundle install \
;fi

COPY . $APP_HOME

RUN cp ./entrypoint /usr/bin/entrypoint \
&& chmod +x /usr/bin/entrypoint \
&& chmod -R +x ./bin/
Expand Down

0 comments on commit 652ca2b

Please sign in to comment.