Files
danbooru/config/docker/danbooru-ci
Albert Yi 79ea6f7e6c Add Docker and Travis config files to enable CI tests
Also fixes some Rails 6.0 deprecation warnings
2018-05-09 09:56:38 -07:00

10 lines
198 B
Plaintext

# This sets up a docker container suitable for use with Travis CI
FROM r888888888/danbooru-base
USER root
COPY . /app
RUN chown -R danbooru:danbooru .
USER danbooru
RUN bundle install > /dev/null