myt/Dockerfile.dump

28 lines
566 B
Docker
Raw Normal View History

2020-11-14 14:53:13 +00:00
FROM myvc/server
USER root
COPY \
dump/.dump.sql \
dump/structure.sql \
2020-11-14 14:53:13 +00:00
myvc.config.json \
./
RUN gosu mysql docker-init.sh \
&& docker-dump.sh dump/structure \
&& docker-dump.sh dump/.dump \
2020-11-14 14:53:13 +00:00
&& gosu mysql docker-temp-stop.sh
COPY routines ./routines
COPY versions ./versions
COPY dump/fixtures.sql ./
2020-11-14 14:53:13 +00:00
ARG STAMP=unknown
RUN gosu mysql docker-temp-start.sh \
&& myvc-push.sh -a \
&& docker-dump.sh dump/fixtures \
2020-11-14 14:53:13 +00:00
&& gosu mysql docker-temp-stop.sh
RUN echo "[LOG] Import finished." \
&& rm -rf /workspace
2020-11-14 14:53:13 +00:00
USER mysql