outliner/Dockerfile

13 lines
287 B
Docker
Raw Normal View History

FROM ruby:2.6-alpine
WORKDIR /outliner
COPY . /outliner/
RUN gem install bundler && \
2019-08-12 13:57:32 +00:00
bundle install && \
2019-08-13 04:59:25 +00:00
apk add --no-cache git openssh-client && \
2019-08-12 13:57:32 +00:00
echo -e "StrictHostKeyChecking no" >> /etc/ssh/ssh_config && \
mkdir /root/.ssh
ENTRYPOINT ["/outliner/entrypoint.sh"]