Skip to content

Main #47645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Closed

Main #47645

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Dockerfile
  • Loading branch information
Billyzxc authored May 20, 2025
commit 3691b59ceca928675c33b75a19e49887d39960d4
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ FROM python:3.10-slim

ENV DEBIAN_FRONTEND=noninteractive

RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
# 安裝 Node.js 16 與 Yarn v1(解決 yarn install 問題)
RUN apt-get update && \
apt-get install -y curl gnupg && \
curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get update && \
apt-get install -y \
nodejs git curl build-essential mariadb-client redis wget \
supervisor \
libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev \
python3-dev libffi-dev libssl-dev && \
npm install -g [email protected] && \
python3-dev libffi-dev libssl-dev \
&& npm install -g [email protected] && \
apt-get clean


Expand Down