Skip to content

Commit a696976

Browse files
committed
fix: use alpine as base image
Images that do not have ahy shell cannot be used by a Docker executor on GitLab
1 parent 74a381f commit a696976

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
@@ -20,7 +20,7 @@ RUN tar -xzvf /tmp/biome.tar.gz -C /usr/src/biome/ --strip-components=1
2020
ENV RUSTFLAGS="-C strip=symbols"
2121
RUN cargo build -p biome_cli --release
2222

23-
FROM scratch AS biome
23+
FROM alpine:${ALPINE_VERSION} AS biome
2424

2525
COPY --from=builder /usr/src/biome/target/release/biome /usr/local/bin/biome
2626

0 commit comments

Comments
 (0)