Sha256: fd408746f503d557b4dc0041f7df9c3d727eda8319c832c24edf700852bfc275
Contents?: true
Size: 609 Bytes
Versions: 1
Compression:
Stored size: 609 Bytes
Contents
# Docker headers FROM ruby:2.3.0-slim MAINTAINER Bruno MEDICI <rest-ftp-daemon@bmconseil.com> ENV LANG=C.UTF-8 # Install packages, and first app gem for caching history only RUN apt-get update && apt-get install -y build-essential git --fix-missing --no-install-recommends RUN gem install rest-ftp-daemon -v 0.400.0 --no-rdoc --no-ri # Retry a gem install to get newer releases, if Gemfile.lock changed ADD Gemfile.lock /dev/null RUN gem install rest-ftp-daemon --no-rdoc --no-ri # RUN rest-ftp-daemon -v # App run EXPOSE 3000 CMD ["/usr/local/bundle/bin/rest-ftp-daemon", "-p", "3000", "-d", "start"]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rest-ftp-daemon-0.502.2 | Dockerfile |