Skip to content
This repository was archived by the owner on Mar 1, 2021. It is now read-only.

Commit 288359a

Browse files
committed
Fixes from circle-ci
1 parent ea75111 commit 288359a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ jobs:
251251
- run:
252252
name: Build and Publish Docker Image to Docker Hub
253253
command: |
254-
./build_and_upload_image.sh elastic/build/Dockerfile codesmag/elasticsearch elasticsearch-build
254+
./build_and_upload_image.sh elastic/build/Dockerfile codesmag/elasticsearch
255255
256256
elastic_indexer_faces:
257257
executor: job-runner

insta/db/kubernetes/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ RUN apk add --no-cache curl postgresql-client tar bash jq
33
RUN wget https://github.com/golang-migrate/migrate/releases/download/v4.6.2/migrate.linux-amd64.tar.gz && tar -xf migrate.linux-amd64.tar.gz
44
RUN mv migrate.linux-amd64 usr/bin/migrate
55
WORKDIR /script
6-
COPY db/migrations db/migrations
7-
COPY db/kubernetes .
6+
COPY insta/db/migrations db/migrations
7+
COPY insta/db/kubernetes .
88
ENTRYPOINT ["bash", "kube-start-postgres.sh"]

insta/posts_face-detection/worker.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ COPY go.mod go.sum ./
44
RUN go mod download
55
COPY . .
66
RUN GOOS=linux go build -o worker.bin insta/posts_face-detection/main/main.go
7-
COPY insta_posts_face-detection/haarcascade_frontalface_alt.xml .
7+
COPY insta/posts_face-detection/haarcascade_frontalface_alt.xml .
88

99
CMD ["./worker.bin"]

neo4j/create-import-user-json/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY go.mod .
44
COPY go.sum .
55
RUN go mod download
66
COPY . .
7-
RUN CGO_ENABLED=0 GOOS=linux go build -installsuffix cgo -o create_import_json neo4j-create-import-user-json/main/main.go
7+
RUN CGO_ENABLED=0 GOOS=linux go build -installsuffix cgo -o neo4j/create-import-user-json/main/main.go
88

99
FROM alpine
1010
RUN apk --no-cache add ca-certificates

0 commit comments

Comments
 (0)