tracks/Dockerfile
Matteo Giaccone a15a7d8a95 Fix Docker setup
This commit fixes the Docker setup and also the CI build.

Also the contributing guide is updated with the new information related
to Docker. The CONTRIBUTING.md file is used to comply with GitHub
guidelines to help other developers to contribute.
2018-12-06 20:20:01 +01:00

16 lines
194 B
Docker

FROM ruby:2.3
WORKDIR /app
RUN touch /etc/app-env
COPY Gemfile* /app/
RUN bundle install
RUN mkdir /app/log
COPY . /app/
RUN cp /app/config/site.yml.tmpl /app/config/site.yml
EXPOSE 3000