GPTfree api commited on
Commit
b940a0d
·
verified ·
1 Parent(s): 21ee9b0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -18,10 +18,10 @@ RUN git clone https://github.com/titaniumnetwork-dev/Alu.git --recursive /app/ne
18
  WORKDIR /app/nebula_repo
19
 
20
  # 必要なパッケージのインストールとビルド
21
- RUN npm install && \
22
- cp .env.defaults .env && \ # 修正箇所: .env.defaults を .env にコピー
23
- pnpm install && \
24
- npm run build
25
 
26
  # 必要なPythonパッケージをインストール
27
  RUN pip install flask
 
18
  WORKDIR /app/nebula_repo
19
 
20
  # 必要なパッケージのインストールとビルド
21
+ RUN npm install
22
+ RUN cp .env.defaults .env
23
+ RUN pnpm install
24
+ RUN npm run build
25
 
26
  # 必要なPythonパッケージをインストール
27
  RUN pip install flask