Sha256: d1b9896abba3337c438d7b4c02ec3781ec525ff2dd9b87118e348a6e0c23195f
Contents?: true
Size: 579 Bytes
Versions: 3
Compression:
Stored size: 579 Bytes
Contents
FROM library/ruby:3.1.2-alpine MAINTAINER Michael Dungan <mpd@jesters-court.net> RUN gem update bundler && \ apk add --no-cache \ build-base \ dumb-init \ gcc \ git \ imagemagick \ imagemagick-dev \ wget && \ mkdir /srv/fakeimage COPY Gemfile \ Gemfile.lock \ fakeimage.gemspec \ /srv/fakeimage/ WORKDIR /srv/fakeimage RUN bundle config github.https true && \ bundle install && \ apk del build-base gcc wget COPY . /srv/fakeimage EXPOSE 4567 CMD ["dumb-init", "ruby", "fakeimage.rb", "-o", "0.0.0.0"]
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fakeimage-0.9.2 | Dockerfile |
fakeimage-0.9.1 | Dockerfile |
fakeimage-0.9 | Dockerfile |