chore: remove instrumentation (#279)

* chore: remove instrumentation

* chore: clean apk cache after installation

* chore: fix docker builds
This commit is contained in:
Henry
2025-12-10 22:16:38 +00:00
committed by GitHub
parent 36675604f9
commit bcd20b58c6
5 changed files with 5 additions and 203 deletions

View File

@@ -4,8 +4,9 @@ ARG PROJECT=@kan/web
# 1. Alpine image
FROM node:${NODE_VERSION}-alpine AS alpine
RUN apk update
RUN apk add --no-cache libc6-compat python3 make g++
RUN apk update && \
apk add --no-cache --virtual .build-deps libc6-compat python3 make g++ && \
rm -rf /var/cache/apk/* /tmp/* || true
# Setup pnpm and turbo on the alpine base
FROM alpine AS base