Skip to content

Commit bcd20b5

Browse files
authored
chore: remove instrumentation (#279)
* chore: remove instrumentation * chore: clean apk cache after installation * chore: fix docker builds
1 parent 3667560 commit bcd20b5

File tree

5 files changed

+5
-203
lines changed

5 files changed

+5
-203
lines changed

apps/web/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ ARG PROJECT=@kan/web
44

55
# 1. Alpine image
66
FROM node:${NODE_VERSION}-alpine AS alpine
7-
RUN apk update
8-
RUN apk add --no-cache libc6-compat python3 make g++
7+
RUN apk update && \
8+
apk add --no-cache --virtual .build-deps libc6-compat python3 make g++ && \
9+
rm -rf /var/cache/apk/* /tmp/* || true
910

1011
# Setup pnpm and turbo on the alpine base
1112
FROM alpine AS base

apps/web/next.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const config = {
2626
],
2727

2828
/** We already do linting and typechecking as separate tasks in CI */
29-
eslint: { ignoreDuringBuilds: true },
3029
typescript: { ignoreBuildErrors: true },
3130

3231
images: {

apps/web/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,9 @@
4848
"geist": "^1.3.1",
4949
"jose": "^6.1.2",
5050
"next": "^16.0.8",
51-
"next-logger": "^5.0.1",
5251
"next-runtime-env": "^1.7.2",
5352
"next-themes": "^0.4.6",
5453
"nextjs-cors": "^2.2.0",
55-
"pino": "^9.6.0",
5654
"posthog-js": "^1.254.0",
5755
"react": "catalog:react18",
5856
"react-beautiful-dnd": "^13.1.1",
@@ -86,7 +84,6 @@
8684
"dotenv-cli": "^7.4.4",
8785
"eslint": "catalog:",
8886
"jiti": "^1.21.6",
89-
"pino-pretty": "^13.0.0",
9087
"prettier": "catalog:",
9188
"tailwindcss": "catalog:",
9289
"typescript": "catalog:"

apps/web/src/instrumentation.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)