mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-05 05:07:38 +08:00
9 lines
201 B
Docker
9 lines
201 B
Docker
FROM goodrainapps/alpine:3.4
|
|
ARG RELEASE_DESC
|
|
COPY . /run/
|
|
RUN chmod 655 /run/rainbond-init-probe /run/entrypoint.sh
|
|
ENV RELEASE_DESC=${RELEASE_DESC}
|
|
ENTRYPOINT [ "/run/entrypoint.sh" ]
|
|
CMD ["probe"]
|
|
|