We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac98df8 commit 3b15cd1Copy full SHA for 3b15cd1
basket.Dockerfile
@@ -1,20 +1,14 @@
1
-FROM oven/bun:1.3.4-debian AS build
+FROM oven/bun:1.3.4-slim AS build
2
3
WORKDIR /app
4
5
-RUN apt-get update && apt-get install -y \
6
- python3 \
7
- make \
8
- g++ \
9
- && rm -rf /var/lib/apt/lists/*
10
-
11
COPY package.json package.json
12
COPY apps/basket/package.json ./apps/basket/package.json
13
COPY packages/*/package.json ./packages/
14
15
COPY packages/ ./packages/
16
17
-RUN bun install
+RUN bun install --ignore-scripts
18
19
COPY apps/basket/src ./apps/basket/src
20
COPY apps/basket/tsconfig.json ./apps/basket/tsconfig.json
0 commit comments