FrontInterfaceCenter/Dockerfile

33 lines
943 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM golang:1.20.1 AS builder
COPY . /src
WORKDIR /src
RUN GOPROXY=https://goproxy.cn make build
FROM debian:stable-slim
RUN cp -pv /etc/apt/sources.list /etc/apt/sources.list.bak && \
sed -i -e 's/deb.debian.org/mirrors.aliyun.com/g' -e 's/security.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list && \
apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
netbase \
&& rm -rf /var/lib/apt/lists/ \
&& apt-get autoremove -y && apt-get autoclean -y
COPY --from=builder /src/bin /app
#正式环境不要打包 configs本身也不会使用
COPY --from=builder /src/configs_prod/ /app/configs/
#删除config文件防止读取到非线上配置文件线上是通过挂载进来的
RUN rm -rf /app/configs/config.yaml
WORKDIR /app
EXPOSE 9000
VOLUME /data/conf
ENV ROCKETMQ_GO_LOG_LEVEL=error TZ=Asia/Shanghai
CMD ["./server", "-conf", "./configs"]