Fix working directories in containers

This commit is contained in:
Jonathan Claudius 2017-06-12 16:51:28 -04:00
Родитель db3886f93c
Коммит f9ba34372a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BCDD990313DFA87
2 изменённых файлов: 4 добавлений и 8 удалений

Просмотреть файл

@ -1,8 +1,6 @@
FROM ruby:latest
MAINTAINER Jonathan Claudius
RUN mkdir /app && \
cd /app && \
git clone https://github.com/mozilla/ssh_scan_api && \
cd ssh_scan_api && \
RUN git clone https://github.com/mozilla/ssh_scan_api /app && \
cd app && \
gem install bundler && \
bundle install

Просмотреть файл

@ -1,8 +1,6 @@
FROM ruby:latest
MAINTAINER Jonathan Claudius
RUN mkdir /app && \
cd /app && \
git clone https://github.com/mozilla/ssh_scan_api && \
cd ssh_scan_api && \
RUN git clone https://github.com/mozilla/ssh_scan_api /app && \
cd app && \
gem install bundler && \
bundle install