mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
15 lines
172 B
Docker
15 lines
172 B
Docker
FROM ruby:2.4
|
|
|
|
WORKDIR /app
|
|
|
|
RUN touch /etc/app-env
|
|
|
|
COPY Gemfile* /app/
|
|
RUN gem install bundler
|
|
RUN bundle install --jobs 4
|
|
|
|
RUN mkdir /app/log
|
|
|
|
COPY . /app/
|
|
|
|
EXPOSE 3000
|