GPTfree api
commited on
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -4,9 +4,12 @@ FROM python:3.10-slim
|
|
4 |
# 作業ディレクトリを設定
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# 必要なパッケージのインストール(gitを含む)
|
8 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
9 |
git \
|
|
|
|
|
|
|
10 |
&& apt-get clean \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
|
|
4 |
# 作業ディレクトリを設定
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# 必要なパッケージのインストール(gitとnpmを含む)
|
8 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
9 |
git \
|
10 |
+
curl \
|
11 |
+
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
|
12 |
+
&& apt-get install -y nodejs \
|
13 |
&& apt-get clean \
|
14 |
&& rm -rf /var/lib/apt/lists/*
|
15 |
|