namarara/Dockerfile

14 lines
201 B
Docker
Raw Permalink Normal View History

2020-05-18 10:27:06 +00:00
FROM ruby:2.6-slim
RUN apt-get update \
&& apt-get install -y git make gcc \
&& apt-get clean autoremove
COPY . /app
WORKDIR /app
RUN bundle install --verbose
CMD bundle exec ./exe/namarara-api