mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Some tweaks
This commit is contained in:
parent
a9a7a37f6a
commit
df66863ae5
2 changed files with 6 additions and 6 deletions
|
|
@ -36,7 +36,7 @@ export class DockerTestContainer {
|
||||||
`docker build --progress=plain -t ${imageName} -f ${dockerFile} ${contextPath} ${buildArgs}`,
|
`docker build --progress=plain -t ${imageName} -f ${dockerFile} ${contextPath} ${buildArgs}`,
|
||||||
{
|
{
|
||||||
stdio: "pipe",
|
stdio: "pipe",
|
||||||
maxBuffer: 50 * 1024 * 1024, // 50MB buffer to capture verbose build logs
|
maxBuffer: 10 * 1024 * 1024, // Default is 1MB, increase to 10MB to account for large build logs
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
|
||||||
|
|
@ -41,11 +41,11 @@ RUN apt-get install -y fish && \
|
||||||
touch /root/.config/fish/config.fish
|
touch /root/.config/fish/config.fish
|
||||||
|
|
||||||
# Install Volta and Node.js
|
# Install Volta and Node.js
|
||||||
RUN curl -sSL https://get.volta.sh | bash
|
RUN curl -fsSL https://get.volta.sh | bash
|
||||||
RUN /root/.volta/bin/volta install node@${NODE_VERSION}
|
RUN volta install node@${NODE_VERSION}
|
||||||
RUN /root/.volta/bin/volta install npm@${NPM_VERSION}
|
RUN volta install npm@${NPM_VERSION}
|
||||||
RUN /root/.volta/bin/volta install yarn@${YARN_VERSION}
|
RUN volta install yarn@${YARN_VERSION}
|
||||||
RUN /root/.volta/bin/volta install pnpm@${PNPM_VERSION}
|
RUN volta install pnpm@${PNPM_VERSION}
|
||||||
|
|
||||||
# Install Bun
|
# Install Bun
|
||||||
RUN curl -fsSL https://bun.sh/install | bash
|
RUN curl -fsSL https://bun.sh/install | bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue