feat: switch to drone 1.0 (#399)

fix #397
This commit is contained in:
Bo-Yi Wu
2019-03-16 11:37:01 +08:00
committed by GitHub
parent 5321ed4575
commit 3f223cf6c0
25 changed files with 1104 additions and 697 deletions

14
docker/Dockerfile.windows Normal file
View File

@@ -0,0 +1,14 @@
FROM plugins/base:windows-amd64
LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>" \
org.label-schema.name="Gorush" \
org.label-schema.vendor="Bo-Yi Wu" \
org.label-schema.schema-version="1.0"
COPY release/gorush.exe /gorush.exe
EXPOSE 8088 9000
HEALTHCHECK --start-period=2s --interval=10s --timeout=5s \
CMD ["\\gorush.exe", "--ping"]
ENTRYPOINT [ "\\gorush.exe" ]