# node-alpine-sqlcipher **Repository Path**: mirrors_hujiulong/node-alpine-sqlcipher ## Basic Information - **Project Name**: node-alpine-sqlcipher - **Description**: A docker image for installing node sqlite3 with sqlcpiher extension - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-13 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README A docker image for installing node [sqlite3](https://www.npmjs.com/package/sqlite3) with [sqlcipher](https://github.com/sqlcipher/sqlcipher) extension [Hub link](https://hub.docker.com/repository/docker/hujiulong/node-alpine-sqlcipher) ```Dockerfile FROM hujiulong/node-alpine-sqlcipher:latest WORKDIR /usr/app COPY index.js . # Link to module sqlite3 that has been installed globally RUN npm link sqlite3 && node index.js ```