Update Dockerfile

This commit is contained in:
Hmily 2024-01-24 17:44:21 +08:00 committed by GitHub
parent 4a7dce34bc
commit 29d65486d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,11 @@ WORKDIR /app
COPY . /app
RUN apt-get update && \
apt-get install -y curl gnupg && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && \