Skip to content

Commit

Permalink
Remove special field
Browse files Browse the repository at this point in the history
  • Loading branch information
HmhWz committed May 27, 2022
1 parent 1cf9ead commit eeaa8ef
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions k8s/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

if [ -n "$1" ]; then
echo 'start building images'
docker pull nm.hub.com/luban/base:1.0.0
docker pull base:1.0.0
cat k8s/build.info | while read line; do
{
imageName="nm.hub.com/luban/${line}:$1"
imageName="${line}:$1"
echo "build image: ${imageName}"

docker build -t $imageName -f k8s/dockerfile/${line}.Dockerfile assembly/dss-package/target/out/dss-1.0.1
Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-apiservice-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-data-api-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-data-governance-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-flow-execution-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-framework-project-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-guide-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down
2 changes: 1 addition & 1 deletion k8s/dockerfile/dss-workflow-server.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nm.hub.com/luban/base:1.0.0
FROM base:1.0.0

WORKDIR /opt/dss

Expand Down

0 comments on commit eeaa8ef

Please sign in to comment.