Add a new, slimmer Dockerfile

We'll use docker-compose for providing the other dependencies.
This commit is contained in:
Matt Rogers 2018-04-25 19:44:21 -05:00
parent 7922ae46de
commit cde2108129
No known key found for this signature in database
GPG key ID: 605D017C07EB4316

14
Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM ruby:2.3
WORKDIR /app
RUN touch /etc/app-env
COPY Gemfile* /app/
RUN bundle install
RUN mkdir /app/log
COPY . /app/
EXPOSE 3000