diff --git a/Dockerfile b/Dockerfile index 44ad59ad9..8a95b6851 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ COPY --from=builder $SERVER_DIR/start-config.yml $SERVER_DIR/ COPY --from=builder $SERVER_DIR/go.mod $SERVER_DIR/ COPY --from=builder $SERVER_DIR/go.sum $SERVER_DIR/ -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-api/Dockerfile b/build/images/openim-api/Dockerfile index d6ce83606..0c072f1d3 100644 --- a/build/images/openim-api/Dockerfile +++ b/build/images/openim-api/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-api: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-crontask/Dockerfile b/build/images/openim-crontask/Dockerfile index 68de9259b..1f6985437 100644 --- a/build/images/openim-crontask/Dockerfile +++ b/build/images/openim-crontask/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-crontask: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-msggateway/Dockerfile b/build/images/openim-msggateway/Dockerfile index a4f955073..bffd1b54d 100644 --- a/build/images/openim-msggateway/Dockerfile +++ b/build/images/openim-msggateway/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-msggateway: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-msgtransfer/Dockerfile b/build/images/openim-msgtransfer/Dockerfile index c968262ef..484cab70f 100644 --- a/build/images/openim-msgtransfer/Dockerfile +++ b/build/images/openim-msgtransfer/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-msgtransfer: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-push/Dockerfile b/build/images/openim-push/Dockerfile index 23ce8535a..29b7f9a37 100644 --- a/build/images/openim-push/Dockerfile +++ b/build/images/openim-push/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-push: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-auth/Dockerfile b/build/images/openim-rpc-auth/Dockerfile index 9b19b92db..815ec69b2 100644 --- a/build/images/openim-rpc-auth/Dockerfile +++ b/build/images/openim-rpc-auth/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-auth: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-conversation/Dockerfile b/build/images/openim-rpc-conversation/Dockerfile index de38eca53..8a4035151 100644 --- a/build/images/openim-rpc-conversation/Dockerfile +++ b/build/images/openim-rpc-conversation/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-conversation: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-friend/Dockerfile b/build/images/openim-rpc-friend/Dockerfile index cc0dd05a6..0e469a069 100644 --- a/build/images/openim-rpc-friend/Dockerfile +++ b/build/images/openim-rpc-friend/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-friend: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-group/Dockerfile b/build/images/openim-rpc-group/Dockerfile index 3a8b5bce2..7049fa8cd 100644 --- a/build/images/openim-rpc-group/Dockerfile +++ b/build/images/openim-rpc-group/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-group: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-msg/Dockerfile b/build/images/openim-rpc-msg/Dockerfile index f87dd899b..6d6719840 100644 --- a/build/images/openim-rpc-msg/Dockerfile +++ b/build/images/openim-rpc-msg/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-msg: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-third/Dockerfile b/build/images/openim-rpc-third/Dockerfile index 01950bf6e..641be91ca 100644 --- a/build/images/openim-rpc-third/Dockerfile +++ b/build/images/openim-rpc-third/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-third: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-rpc-user/Dockerfile b/build/images/openim-rpc-user/Dockerfile index 5d0103bf6..a7e8f31f9 100644 --- a/build/images/openim-rpc-user/Dockerfile +++ b/build/images/openim-rpc-user/Dockerfile @@ -54,7 +54,7 @@ RUN echo -e "serviceBinaries:\n openim-rpc-user: 1 \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"] diff --git a/build/images/openim-tools/component/Dockerfile b/build/images/openim-tools/component/Dockerfile index d462f90d3..afe0ee9ed 100644 --- a/build/images/openim-tools/component/Dockerfile +++ b/build/images/openim-tools/component/Dockerfile @@ -105,7 +105,7 @@ RUN echo -e "serviceBinaries:\n \n" \ echo -e "toolBinaries:\n - check-free-memory\n - seq\n" >> $SERVER_DIR/start-config.yml && \ echo "maxFileDescriptors: 10000" >> $SERVER_DIR/start-config.yml -RUN go get github.com/openimsdk/openim-gomake@0.0.15-alpha.1 +RUN go get github.com/openimsdk/gomake@v0.0.15-alpha.1 # Set the command to run when the container starts ENTRYPOINT ["sh", "-c", "mage start && tail -f /dev/null"]