You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM golang:1.20.0 as build
|
|
|
|
WORKDIR /openim
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
|
|
echo "Asia/Shanghai" > /etc/timezone && \
|
|
mkdir -p /var/log/miniblog
|
|
|
|
COPY miniblog /openim
|
|
|
|
EXPOSE 10002
|
|
CMD ["./bin/openim-api","--port", "10002"] |