mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
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.
16 lines
194 B
Docker
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
|