diff --git a/Dockerfile b/Dockerfile index e6c19fe..961f104 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,10 +17,11 @@ RUN mkdir -p /gems && chown $UID:$GID /gems USER $UNAME COPY --chown=$UID:$GID Gemfile* /usr/src/app/ -COPY --chown=$UID:$GID . /usr/src/app WORKDIR /usr/src/app +COPY --chown=$UID:$GID . /usr/src/app + RUN bundle install CMD ["bundle", "exec", "rackup", "-p", "4567", "-o", "0.0.0.0"]