Skip to content

Commit

Permalink
Update copy command in Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinmartian committed Nov 2, 2024
1 parent 1b7d44c commit 4b431b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion poolprice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN echo "Fetching server certificate..." \
WORKDIR /app

# Copy the Go application files to the container
COPY poolprice/ .
COPY . .

# Build the Go application
RUN go build -o main .
Expand Down
2 changes: 1 addition & 1 deletion weather/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM golang:alpine AS build-stage
WORKDIR /app

# Copy the Go application files to the container
COPY weather/ .
COPY . .

# Build the Go application
RUN go build -o main .
Expand Down

0 comments on commit 4b431b7

Please sign in to comment.