GPTfree api commited on
Commit
9f8c883
·
verified ·
1 Parent(s): afbda33

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -4,8 +4,8 @@ FROM node:20-buster
4
  # 作業ディレクトリを作成
5
  WORKDIR /app
6
 
7
- # Gitをインストール
8
- RUN apt-get update && apt-get install -y git
9
 
10
  # リポジトリをクローン
11
  RUN git clone https://github.com/libredirect/browser_extension
@@ -22,4 +22,5 @@ RUN npm run html
22
  # コンテナのポートを公開(必要に応じて設定)
23
  EXPOSE 3000
24
 
25
- CMD ["npm", "start"]
 
 
4
  # 作業ディレクトリを作成
5
  WORKDIR /app
6
 
7
+ # GitとFirefoxをインストール
8
+ RUN apt-get update && apt-get install -y git firefox-esr
9
 
10
  # リポジトリをクローン
11
  RUN git clone https://github.com/libredirect/browser_extension
 
22
  # コンテナのポートを公開(必要に応じて設定)
23
  EXPOSE 3000
24
 
25
+ # Firefoxを指定してweb-extを実行するように変更
26
+ CMD ["web-ext", "run", "--firefox-bin", "/usr/bin/firefox-esr"]