mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-05 21:27:47 +08:00
18 lines
384 B
Docker
18 lines
384 B
Docker
FROM goodrainapps/alpine:3.4
|
|
|
|
RUN apk --no-cache add libstdc++ ca-certificates openssl openssl-dev
|
|
|
|
COPY build/libzmq/lib/libzmq.so.3 /usr/lib
|
|
|
|
COPY rainbond-eventlog /run/rainbond-eventlog
|
|
ADD entrypoint.sh /run/entrypoint.sh
|
|
|
|
EXPOSE 6366
|
|
EXPOSE 6365
|
|
EXPOSE 6364
|
|
EXPOSE 6363
|
|
EXPOSE 6362
|
|
VOLUME [ "/etc/goodrain" ]
|
|
ENV RELEASE_DESC=__RELEASE_DESC__
|
|
ENTRYPOINT ["/run/entrypoint.sh"]
|