GPTfree api
commited on
Update Dockerfile
Browse files- 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 |
-
|
|
|
|
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"]
|