diff options
Diffstat (limited to 'arch-nodejs/Dockerfile.local')
| -rw-r--r-- | arch-nodejs/Dockerfile.local | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch-nodejs/Dockerfile.local b/arch-nodejs/Dockerfile.local new file mode 100644 index 0000000..cb401ad --- /dev/null +++ b/arch-nodejs/Dockerfile.local @@ -0,0 +1,16 @@ +FROM sulhan/arch-base:latest +MAINTAINER Sulhan <ms@kilabit.info> + +COPY *.db /var/lib/pacman/sync/ +COPY *.xz /var/cache/pacman/pkg/ + +RUN pacman -S --noconfirm nodejs npm && \ + rm -r /usr/include/* && \ + rm -r /usr/share/doc/nodejs/* && \ + rm -r /usr/share/licenses/* && \ + rm -r /usr/share/man/* && \ + rm -r /usr/lib/node_modules/npm/doc/* && \ + rm -r /usr/lib/node_modules/npm/html/doc/* && \ + rm -r /usr/lib/node_modules/npm/man/* && \ + rm -r /var/cache/pacman/pkg/* && \ + rm -r /var/log/* |
