namarara/Dockerfile

14 lines
201 B
Text
Raw Normal View History

2020-05-18 12:27:06 +02: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