prod128ac/sureops/prod128ac-db-d/deployment/Dockerfile

18 lines
736 B
Docker
Raw Normal View History

2024-08-23 11:43:34 +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/
#COPY --from=code /repo//data/19531_1724413382527/sureops_deploy/prod128ac/prod128ac-db-d/authsec_mysql/mysql/wf_table/backend/src/main/resources/ .
VOLUME /var/lib/mysql
EXPOSE 3306
CMD ["mysqld"]