We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a696976 commit ca874f0Copy full SHA for ca874f0
Dockerfile
@@ -24,6 +24,10 @@ FROM alpine:${ALPINE_VERSION} AS biome
24
25
COPY --from=builder /usr/src/biome/target/release/biome /usr/local/bin/biome
26
27
+# Install git and flag to repo safe
28
+RUN apk add --no-cache git
29
+RUN git config --global --add safe.directory /code
30
+
31
WORKDIR /code
32
33
ENTRYPOINT [ "/usr/local/bin/biome" ]
0 commit comments