Skip to content

Commit 32b12e0

Browse files
authored
Merge pull request #12 from approvers/fix-dockerfile
Fix the directory where copy node_modules from frontend
2 parents dfd8af2 + 4baa4ed commit 32b12e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN mkdir /src
1616
WORKDIR /src
1717

1818
COPY main.go go.mod go.sum ./
19-
COPY --from=frontend /src/node_modules ./
19+
COPY --from=frontend /src/node_modules ./node_modules
2020

2121
RUN cd /src && go build -o main && rm main.go go.mod go.sum
2222

0 commit comments

Comments
 (0)