Skip to content

Commit 3375fad

Browse files
LucasRoesleralexellis
authored andcommitted
Remove go mod tidy
**What** - Remove the tidy step because it is not needed and does not work as expected Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
1 parent 675f544 commit 3375fad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/golang-http/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ARG GOFLAGS=""
2525
RUN cat function/GO_REPLACE.txt >> ./go.mod || exit 0
2626
RUN if [ -d ./function/vendor ]; then \
2727
echo "moving handler vendor" && \
28-
mv -f ./function/vendor . && go mod tidy; \
28+
mv -f ./function/vendor .; \
2929
else \
3030
echo "using modules or vendor not found "; \
3131
fi

0 commit comments

Comments
 (0)