test18nov/sureops/test18nov-db-d/deployment/Dockerfile

18 lines
736 B
Docker
Raw Permalink Normal View History

2024-11-18 03:32:39 +00:00
#pulling from github
# FROM alpine/git:v2.30.1 AS code
#ARG BUILD_ID
#RUN echo $BUILD_ID
#LABEL stage=builder
#LABEL build_id=$BUILD_ID
#RUN mkdir repo
#WORKDIR /repo
#RUN git clone http://risadmin:admin1234@try.gitea.io/risadmin/a_madhurtest1.git
#******** Stage 2 - Mysql Build*********
FROM mysql:8.0
ENV MYSQL_ROOT_PASSWORD root
COPY conf.d /etc/mysql/conf.d
COPY *.sql /docker-entrypoint-initdb.d/
2024-11-20 05:38:33 +00:00
#COPY --from=code /repo//data/25343_1732081074569/sureops_deploy/test18nov/test18nov-db-d/authsec_mysql/mysql/wf_table/backend/src/main/resources/ .
2024-11-18 03:32:39 +00:00
VOLUME /var/lib/mysql
EXPOSE 3306
CMD ["mysqld"]