vitess-gh/Dockerfile

16 строки
300 B
Docker
Исходник Обычный вид История

FROM vitess/bootstrap:mariadb
2014-10-04 08:27:09 +04:00
# Clear out old tree from bootstrap image.
USER root
RUN rm -rf /vt/src/github.com/youtube/vitess
# Re-copy sources from working tree
2014-10-04 08:27:09 +04:00
COPY . /vt/src/github.com/youtube/vitess
# Fix permissions
RUN chown -R vitess:vitess /vt
USER vitess
2014-10-04 08:27:09 +04:00
# Build Vitess
RUN make build