21 lines
548 B
Docker
21 lines
548 B
Docker
FROM node:22-alpine
|
|
|
|
# Use Chinese mirrors for faster package installation
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
|
|
RUN npm config set registry https://registry.npmmirror.com/
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN corepack enable pnpm && pnpm add -g turbo
|
|
RUN pnpm config set registry https://registry.npmmirror.com/
|
|
RUN pnpm install
|
|
EXPOSE 3003
|
|
|
|
ENV TURBO_TELEMETRY_DISABLED=1
|
|
|
|
VOLUME [ "/app/node_modules", "/app/live/node_modules"]
|
|
|
|
CMD ["pnpm","dev", "--filter=live"]
|