Skip to content

Commit

Permalink
Changes [build image]
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro authored Nov 14, 2024
1 parent 84d2e46 commit 81e5e02
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ci/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ARG IMAGE=debian:11
FROM $IMAGE
ENV HOME=/root
COPY ./scripts/bootstrap.sh /tmp/bootstrap.sh
ENV CI=true
RUN touch $HOME/.bashrc
RUN sh /tmp/bootstrap.sh && rm -rf /tmp/*
WORKDIR /workspace/bun
COPY bunfig.toml bunfig.toml
Expand All @@ -14,5 +16,5 @@ COPY *.zig ./
COPY src/ src/
COPY packages/ packages/
COPY test/ test/
RUN bun i
RUN bun run build:ci
RUN . $HOME/.bashrc && bun i
RUN . $HOME/.bashrc && bun run build:ci

0 comments on commit 81e5e02

Please sign in to comment.