Skip to content

Commit

Permalink
fix(docker): don't muck up directory copies
Browse files Browse the repository at this point in the history
  • Loading branch information
shakefu authored Jul 21, 2023
1 parent a698383 commit da4ad13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ RUN /tmp/shakefu/extensions.sh

# Build home tool from source
WORKDIR /tmp/shakefu/home
COPY files/ ./files/
COPY install/ ./install/
# TODO: Use SemVer instead of this
COPY files/ install/ go.mod go.sum home.go VERSION .
COPY go.mod go.sum home.go VERSION .
RUN go build --buildvcs=false .

# Install home
Expand Down

0 comments on commit da4ad13

Please sign in to comment.