Attempt to fix git fetch certificate error
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Julien Valverdé
2023-08-31 03:03:29 +02:00
parent f12504000d
commit 1c482610f4
2 changed files with 2 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ local install_run_step = {
name: "install-run",
image: bun_image,
commands: [
"apt update -y && apt full-upgrade -y && apt install -y --no-install-recommends git",
"apt update -y && apt full-upgrade -y && apt install -y --reinstall ca-certificates && apt install -y --no-install-recommends git",
"bun install --production --frozen-lockfile --no-cache",
"bun start .",
],

View File

@@ -2,6 +2,7 @@ FROM oven/bun:0.8.1
RUN apt update -y && \
apt full-upgrade -y && \
apt install -y --reinstall ca-certificates && \
apt install -y --no-install-recommends git && \
apt autoremove -y --purge && \
apt clean