ELF Header or installation issue with bcrypt in Docker container
问题 Kind of a longshot, but has anyone had any problems using bcrypt in a linux container (specifically docker) and know of an automated workaround? I have the same issue as these two: Invalid ELF header with node bcrypt on AWSBox bcrypt invalid elf header when running node app My Dockerfile # Pull base image FROM node:0.12 # Expose port 8080 EXPOSE 8080 # Add current directory into path /data in image ADD . /data # Set working directory to /data WORKDIR /data # Install dependencies from package