зеркало из https://github.com/github/vitess-gh.git
13 строки
211 B
Docker
13 строки
211 B
Docker
|
FROM vitess/bootstrap:mysql56
|
||
|
|
||
|
# Re-copy sources from working tree
|
||
|
USER root
|
||
|
COPY . /vt/src/github.com/youtube/vitess
|
||
|
|
||
|
# Fix permissions
|
||
|
RUN chown -R vitess:vitess /vt
|
||
|
USER vitess
|
||
|
|
||
|
# Build Vitess
|
||
|
RUN make build
|