mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 12:47:36 +08:00
17 lines
333 B
Docker
17 lines
333 B
Docker
FROM goodrainapps/alpine:3.4
|
|
|
|
LABEL author="zengqg@goodrain.com"
|
|
|
|
ENV WORK_DIR=/run
|
|
|
|
RUN apk --no-cache add openssl openssh-client subversion
|
|
COPY rainbond-chaos entrypoint.sh /run/
|
|
COPY export-app /src/export-app
|
|
COPY build-app /src/build-app
|
|
|
|
WORKDIR $WORK_DIR
|
|
|
|
ENV RELEASE_DESC=__RELEASE_DESC__
|
|
|
|
ENTRYPOINT ["/run/entrypoint.sh"]
|