GPTfree api commited on
Commit
0d41e33
·
verified ·
1 Parent(s): 64eef72

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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