mirror of
https://github.com/yuto-yuto/node-red-contrib-password-generator.git
synced 2024-11-21 19:06:44 +01:00
9 lines
296 B
Docker
9 lines
296 B
Docker
FROM nodered/node-red
|
|
|
|
# error without this
|
|
RUN mkdir -p ./password-generator/node_modules/
|
|
|
|
COPY ../package.json ../package-lock.json ./password-generator/
|
|
COPY ../dist ./password-generator/dist
|
|
RUN npm install ./password-generator --unsafe-perm --no-update-notifier --no-fund --only=production
|