soiz1 commited on
Commit
aab9b89
·
verified ·
1 Parent(s): a699748

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -31,9 +31,9 @@ RUN chmod -R 777 /app
31
  # 依存関係をインストール(競合を無視)
32
  RUN npm install --legacy-peer-deps
33
 
34
- RUN cd node_modules/scratch-blocks && \
 
35
  npm install && \
36
- [ -d "google-closure-library" ] && mv google-closure-library closure-library || echo "No need to rename" && \
37
  npm run prepublish
38
 
39
  # OpenSSL の互換オプションを有効化
 
31
  # 依存関係をインストール(競合を無視)
32
  RUN npm install --legacy-peer-deps
33
 
34
+ RUN git clone https://github.com/google/closure-library.git node_modules/scratch-blocks/closure-library && \
35
+ cd node_modules/scratch-blocks && \
36
  npm install && \
 
37
  npm run prepublish
38
 
39
  # OpenSSL の互換オプションを有効化