Dockerfile 767 字节
Newer Older
martianzhang's avatar
martianzhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# NOTE: This file is also symlinked as "Dockerfile" in the root of our
#       repository because the automated build feature on Docker Hub does not
#       allow to specify a different build context. It always assumes that the
#       build context is the same directory as the Dockerfile is in.
#       "make build" below must be called in our repository's root and
#       therefore we need to have the symlinked "Dockerfile" in there as well.
# TODO(mberlin): Remove the symlink and this note once
# https://github.com/docker/hub-feedback/issues/292 is fixed.
FROM vitess/bootstrap:mysql57

# Re-copy sources from working tree
USER root
COPY . /vt/src/vitess.io/vitess

martianzhang's avatar
martianzhang 已提交
15 16 17
# Build Vitess
RUN make build

martianzhang's avatar
martianzhang 已提交
18 19 20 21
# Fix permissions
RUN chown -R vitess:vitess /vt
USER vitess