Skip to content

Commit

Permalink
fixed docker creation
Browse files Browse the repository at this point in the history
  • Loading branch information
tnfink committed Feb 1, 2017
1 parent 101d800 commit e756dde
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 2 additions & 4 deletions mlc-go-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
<commandlineArgs>src/scripts/buildMicroserviceForDocker.sh</commandlineArgs>
</configuration>
</execution>
<!--
<execution>
<id>build-docker-image</id>
<phase>install</phase>
Expand All @@ -39,11 +38,10 @@
</goals>
<configuration>
<executable>sh</executable>
<workingDirectory>${project.basedir}/mlc-snap-docker</workingDirectory>
<commandlineArgs>buildDockerImage.sh</commandlineArgs>
<workingDirectory>${project.basedir}/</workingDirectory>
<commandlineArgs>src/scripts/buildDockerImage.sh</commandlineArgs>
</configuration>
</execution>
-->
</executions>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

cp ../target/* supplied/
cp target/* mlc-go-docker/supplied/

cd mlc-go-docker/

docker build --tag akquinet/mlc-go:1.0 .

0 comments on commit e756dde

Please sign in to comment.