-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
79 lines (67 loc) · 1.91 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Use a specific Node.js version for better reproducibility
FROM node:23.3.0-slim AS builder
# Install pnpm globally and necessary build tools
RUN npm install -g pnpm@9.4.0 && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
git \
python3 \
python3-pip \
curl \
node-gyp \
ffmpeg \
libtool-bin \
autoconf \
automake \
libopus-dev \
make \
g++ \
build-essential \
libcairo2-dev \
libjpeg-dev \
libpango1.0-dev \
libgif-dev \
openssl \
libssl-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Set Python 3 as the default python
RUN ln -sf /usr/bin/python3 /usr/bin/python
# Set the working directory
WORKDIR /app
# Copy application code
COPY . .
# Install dependencies
RUN pnpm install --no-frozen-lockfile
# Build the project
RUN pnpm run build && pnpm prune --prod
# Final runtime image
FROM node:23.3.0-slim
# Install runtime dependencies
RUN npm install -g pnpm@9.4.0 && \
apt-get update && \
apt-get install -y \
git \
python3 \
ffmpeg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /app
# Copy built artifacts and production dependencies from the builder stage
COPY --from=builder /app/package.json ./
COPY --from=builder /app/pnpm-workspace.yaml ./
COPY --from=builder /app/.npmrc ./
COPY --from=builder /app/turbo.json ./
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/agent ./agent
COPY --from=builder /app/client ./client
COPY --from=builder /app/lerna.json ./
COPY --from=builder /app/packages ./packages
COPY --from=builder /app/scripts ./scripts
COPY --from=builder /app/characters ./characters
# Expose necessary ports
EXPOSE 3000 5173
# Command to start the application
CMD ["sh", "-c", "pnpm start & pnpm start:client"]