增加dockfile
commit
621518e84a
|
@ -0,0 +1,32 @@
|
||||||
|
FROM ubuntu:19.10
|
||||||
|
|
||||||
|
EXPOSE 18080/tcp
|
||||||
|
EXPOSE 5060/tcp
|
||||||
|
|
||||||
|
# 使用了自己的settings.xml作为maven的源,加快打包速度
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends openjdk-11-jre git maven nodejs npm && \
|
||||||
|
cd /home && \
|
||||||
|
git clone https://github.com/648540858/wiki.git && \
|
||||||
|
cp wiki/config/settings.xml /usr/share/maven/conf/ && \
|
||||||
|
git clone https://github.com/648540858/wvp-GB28181.git && \
|
||||||
|
cd /home/wvp-GB28181/web_src && \
|
||||||
|
npm install npm -g && \
|
||||||
|
npm install nrm -g && \
|
||||||
|
nrm use taobao && \
|
||||||
|
npm install && \
|
||||||
|
npm run build && \
|
||||||
|
mkdir -p /opt/wvp/config && \
|
||||||
|
cd /home/wvp-GB28181 && \
|
||||||
|
mvn compile && \
|
||||||
|
mvn package && \
|
||||||
|
cp /home/wvp-GB28181/target/wvp-1.5.10.RELEASE.jar /opt/wvp/ && \
|
||||||
|
rm -rf /home/wiki && \
|
||||||
|
rm -rf /home/wvp-GB28181 && \
|
||||||
|
apt-get autoremove -y git maven nodejs npm && \
|
||||||
|
apt-get clean -y && \
|
||||||
|
rm -rf /var/lib/apt/lists/*dic
|
||||||
|
|
||||||
|
WORKDIR /opt/wvp
|
||||||
|
|
||||||
|
CMD java -jar wvp-1.5.10.RELEASE.jar --spring.config.location=/opt/wvp/config/application.yml
|
9
pom.xml
9
pom.xml
|
@ -163,7 +163,6 @@
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
@ -177,7 +176,8 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.8</source>
|
<source>1.8</source>
|
||||||
<target>1.8</target>
|
<target>1.8</target>
|
||||||
<!-- <webResources>
|
<<<<<<< HEAD
|
||||||
|
<webResources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>${project.basedir}/libs</directory>
|
<directory>${project.basedir}/libs</directory>
|
||||||
<targetPath>WEB-INF/lib</targetPath>
|
<targetPath>WEB-INF/lib</targetPath>
|
||||||
|
@ -186,7 +186,9 @@
|
||||||
<include>**/*.jar</include>
|
<include>**/*.jar</include>
|
||||||
</includes>
|
</includes>
|
||||||
</resource>
|
</resource>
|
||||||
</webResources> -->
|
</webResources>
|
||||||
|
=======
|
||||||
|
>>>>>>> upstream/master
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
@ -194,7 +196,6 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue