Skip to content

Commit

Permalink
Adapt Service Dockerfiles tor local build (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel committed Jan 15, 2024
1 parent 88a9de6 commit 365ea37
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion v3/services/accesscodesvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/accesscodesvc
WORKDIR /app/v3/services/accesscodesvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down
2 changes: 1 addition & 1 deletion v3/services/authnsvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/authnsvc
WORKDIR /app/v3/services/authnsvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down
2 changes: 1 addition & 1 deletion v3/services/authrsvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/authrsvc
WORKDIR /app/v3/services/authrsvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down
2 changes: 1 addition & 1 deletion v3/services/conversionsvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/conversionsvc
WORKDIR /app/v3/services/conversionsvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down
2 changes: 1 addition & 1 deletion v3/services/rbacsvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/rbacsvc
WORKDIR /app/v3/services/rbacsvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down
2 changes: 1 addition & 1 deletion v3/services/settingsvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/settingsvc
WORKDIR /app/v3/services/settingsvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down
2 changes: 1 addition & 1 deletion v3/services/usersvc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY . .

# Change to the directory of the service.
WORKDIR /app/services/usersvc
WORKDIR /app/v3/services/usersvc
RUN go mod download

# Build the service. The output binary is named "app".
Expand Down

0 comments on commit 365ea37

Please sign in to comment.