Spaces:
Running
Running
GPT-free-api
commited on
Commit
•
997ded9
1
Parent(s):
cf2afce
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -13,6 +13,10 @@ RUN git clone https://github.com/izum00/rammerhead-heroku.git .
|
|
13 |
# npmのバージョンを明示的に固定
|
14 |
RUN npm install -g [email protected]
|
15 |
|
|
|
|
|
|
|
|
|
16 |
# アプリの依存関係をインストール
|
17 |
RUN npm install --legacy-peer-deps --ignore-scripts
|
18 |
RUN npm rebuild sqlite3
|
@@ -25,4 +29,4 @@ EXPOSE 443
|
|
25 |
EXPOSE 8080
|
26 |
|
27 |
# サーバーを起動
|
28 |
-
CMD ["node", "src/server.js"]
|
|
|
13 |
# npmのバージョンを明示的に固定
|
14 |
RUN npm install -g [email protected]
|
15 |
|
16 |
+
# キャッシュ用ディレクトリを作成
|
17 |
+
RUN mkdir -p /app/cache-js
|
18 |
+
RUN chmod -R 777 /app/cache-js
|
19 |
+
|
20 |
# アプリの依存関係をインストール
|
21 |
RUN npm install --legacy-peer-deps --ignore-scripts
|
22 |
RUN npm rebuild sqlite3
|
|
|
29 |
EXPOSE 8080
|
30 |
|
31 |
# サーバーを起動
|
32 |
+
CMD ["node", "src/server.js"]
|