Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce docker image size #45

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
FROM ruby:2.6.6-alpine3.13
FROM ruby:2.6.6-alpine3.13 AS build

RUN apk update && apk upgrade && \
apk add --no-cache bash git openssh build-base gcc wget git
apk add --no-cache git openssh build-base gcc wget git

RUN gem install bundler -v 2.3.6

WORKDIR /opt/representer

COPY Gemfile Gemfile.lock .

RUN bundle install

FROM ruby:2.6.6-alpine3.13 AS runtime

RUN apk add --no-cache bash

WORKDIR /opt/representer

COPY --from=build /usr/local/bundle /usr/local/bundle

COPY . .

ENTRYPOINT ["sh", "/opt/representer/bin/run.sh"]