21 lines
416 B
Docker
21 lines
416 B
Docker
FROM registry.cn-chengdu.aliyuncs.com/pkgtool/build:1.23.6 AS builder
|
||
|
||
COPY . /src
|
||
WORKDIR /src
|
||
|
||
RUN make build
|
||
|
||
FROM registry.cn-chengdu.aliyuncs.com/pkgtool/work:v0.0.1
|
||
|
||
COPY --from=builder /src/bin /app
|
||
#删除config文件,线上是通过挂载进来的
|
||
#RUN rm -rf /app/configs/config.yaml
|
||
|
||
WORKDIR /app
|
||
|
||
RUN mkdir /app/cert
|
||
|
||
VOLUME /data/conf
|
||
ENV ROCKETMQ_GO_LOG_LEVEL=error TZ=Asia/Shanghai
|
||
|
||
CMD ["./server"] |