代码上传
@@ -0,0 +1,21 @@
+# http://editorconfig.org
+root = true
+
+# 空格替代Tab缩进在各种编辑工具下效果一致
+[*]
+indent_style = space
+indent_size = 4
+charset = utf-8
+end_of_line = lf
+trim_trailing_whitespace = true
+insert_final_newline = true
+[*.java]
+indent_style = tab
+[*.{json,yml}]
+indent_size = 2
+[*.md]
+insert_final_newline = false
+trim_trailing_whitespace = false
@@ -1,14 +1,27 @@
-# ---> Java
-*.class
-
-# Mobile Tools for Java (J2ME)
-.mtj.tmp/
-# Package Files #
-*.jar
-*.war
-*.ear
-# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
-hs_err_pid*
+# maven #
+target
+logs
+# windows #
+Thumbs.db
+# Mac #
+.DS_Store
+# eclipse #
+.settings
+.project
+.classpath
+.log
+*.class
+# idea #
+.idea
+*.iml
+# Package Files #
+*.jar
+*.war
+*.ear
+/target
@@ -0,0 +1,15 @@
+FROM anapsix/alpine-java:8_server-jre_unlimited
+MAINTAINER smallchill@163.com
+RUN mkdir -p /blade
+WORKDIR /blade
+EXPOSE 9999
+ADD ./target/Flowable-Design-1.0.0.jar ./app.jar
+ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-jar", "app.jar"]
+CMD ["--spring.profiles.active=test"]