Files
open-im-server/deploy.Dockerfile
T

40 lines
1.3 KiB
Docker
Raw Normal View History

2021-05-26 19:42:58 +08:00
FROM golang:1.15 as build
# go mod Installation source, container environment variable addition will override the default variable value
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct
# Set up the working directory
2021-08-05 11:17:13 +08:00
WORKDIR /home/Open-IM-Server
2021-05-26 19:42:58 +08:00
# add all files to the container
COPY . .
2021-08-05 11:17:13 +08:00
WORKDIR /home/Open-IM-Server/script
2021-05-26 19:42:58 +08:00
RUN chmod +x *.sh
2021-08-05 11:17:13 +08:00
RUN /bin/sh -c ./build_all_service.sh
#Blank image Multi-Stage Build
FROM ubuntu
RUN rm -rf /var/lib/apt/lists/*
RUN apt-get install apt-transport-https && apt-get update && apt-get install procps\
&&apt-get install net-tools
#Non-interactive operation
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y vim curl tzdata gawk
#Time zone adjusted to East eighth District
RUN ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && dpkg-reconfigure -f noninteractive tzdata
#set directory to map logs,config file,script file.
VOLUME ["/home/Open-IM-Server/logs","/home/Open-IM-Server/config","/home/Open-IM-Server/script"]
2021-05-26 19:42:58 +08:00
2021-08-05 11:17:13 +08:00
#Copy scripts files and binary files to the blank image
COPY --from=build /home/Open-IM-Server/script /home/Open-IM-Server/script
COPY --from=build /home/Open-IM-Server/bin /home/Open-IM-Server/bin
2021-05-26 19:42:58 +08:00
2021-08-05 11:17:13 +08:00
WORKDIR /home/Open-IM-Server/script
2021-05-26 19:42:58 +08:00
2021-08-05 11:17:13 +08:00
# "&& tail -f /dev/null " Prevent the container exit after the command is executed
2021-08-05 15:45:15 +08:00
CMD ["./start_all.sh && tail -f /dev/null"]