outliner/Dockerfile

13 lines
293 B
Docker
Raw Normal View History

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