mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
Error message fixes for CSV import. Add the necessary directory to Docker image.
This commit is contained in:
parent
194d261042
commit
c2bd1b0d81
4 changed files with 26 additions and 3 deletions
17
Dockerfile
17
Dockerfile
|
@ -17,10 +17,25 @@ RUN apt-get update && apt-get install -y yarn netcat
|
|||
|
||||
RUN mkdir /app/log
|
||||
|
||||
COPY . /app/
|
||||
COPY COPYING /app/
|
||||
COPY config /app/config/
|
||||
COPY config/database.docker.yml /app/config/database.yml
|
||||
COPY config/site.docker.yml /app/config/site.yml
|
||||
|
||||
COPY bin /app/bin/
|
||||
COPY script /app/script/
|
||||
COPY public /app/public/
|
||||
COPY vendor /app/vendor/
|
||||
|
||||
COPY .yardopts /app/
|
||||
COPY Rakefile /app/
|
||||
COPY config.ru /app/
|
||||
COPY docker-entrypoint.sh /app/
|
||||
|
||||
COPY lib /app/lib/
|
||||
COPY app /app/app/
|
||||
COPY db /app/db/
|
||||
|
||||
RUN RAILS_ENV=production bundle exec rake assets:precompile
|
||||
|
||||
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue