Sha256: 8a331439f568d6c77af38d6308409803a733aeda02b709e88c5f1c5bda476540

Contents?: true

Size: 466 Bytes

Versions: 2

Compression:

Stored size: 466 Bytes

Contents

FROM ruby:slim

RUN apt-get update && \
        apt-get install -y libtag1-dev libtag-extras-dev g++ make && \
        apt-get clean

WORKDIR /app

COPY ./lib/plex_symlinker/version.rb ./lib/plex_symlinker/version.rb
COPY ./Gemfile* ./
COPY ./plex_symlinker.gemspec ./

RUN bundle config set deployment 'true'
RUN bundle install --without=development

COPY ./ ./

CMD bundle exec exe/plex_symlinker /app/source /app/target --symlink-target-dir=${SYMLINK_TARGET_DIR}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
plex_symlinker-0.1.1 Dockerfile
plex_symlinker-0.1.0 Dockerfile