Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -26,10 +26,13 @@ ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium-browser
|
|
| 26 |
# Install Flowise globally
|
| 27 |
RUN npm install -g flowise
|
| 28 |
|
|
|
|
|
|
|
|
|
|
| 29 |
# Install AWS SDK for JavaScript
|
| 30 |
RUN npm install aws-sdk -g
|
| 31 |
|
| 32 |
-
# Verify installation
|
| 33 |
RUN npm list -g aws-sdk
|
| 34 |
|
| 35 |
# # Configure Flowise directories using the ARG
|
|
|
|
| 26 |
# Install Flowise globally
|
| 27 |
RUN npm install -g flowise
|
| 28 |
|
| 29 |
+
# Verify Flowise installation
|
| 30 |
+
RUN npm list -g aws-sdk
|
| 31 |
+
|
| 32 |
# Install AWS SDK for JavaScript
|
| 33 |
RUN npm install aws-sdk -g
|
| 34 |
|
| 35 |
+
# Verify AWS SDK for JavaScript installation
|
| 36 |
RUN npm list -g aws-sdk
|
| 37 |
|
| 38 |
# # Configure Flowise directories using the ARG
|