2 Star 1 Fork 0

一级码农/FUXA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
MatthewReed303 提交于 2024-06-24 22:30 . Update Dockerfile
FROM node:16-bookworm
RUN apt-get update && apt-get install -y dos2unix
# Change working directory
WORKDIR /usr/src/app
# Clone FUXA repository
RUN git clone https://github.com/frangoteam/FUXA.git
# Install build dependencies for node-odbc
RUN apt-get update && apt-get install -y build-essential unixodbc unixodbc-dev
# Convert the script to Unix format and make it executable
RUN dos2unix FUXA/odbc/install_odbc_drivers.sh && chmod +x FUXA/odbc/install_odbc_drivers.sh
WORKDIR /usr/src/app/FUXA/odbc
RUN ./install_odbc_drivers.sh
# Change working directory
WORKDIR /usr/src/app
# Copy odbcinst.ini to /etc
RUN cp FUXA/odbc/odbcinst.ini /etc/odbcinst.ini
# Clone node-odbc repository
RUN git clone https://github.com/markdirish/node-odbc.git
# Change working directory to node-odbc
WORKDIR /usr/src/app/node-odbc
# Install compatible versions of global npm packages
RUN npm install -g node-gyp && \
npm install -g npm@8 && \
npm install -g node-addon-api && \
npm install -g @mapbox/node-pre-gyp
# Install dependencies and build node-odbc
RUN npm ci --production && \
./node_modules/.bin/node-pre-gyp rebuild --production && \
./node_modules/.bin/node-pre-gyp package
# Build and install node-odbc
#RUN npm install
# Install Fuxa server
WORKDIR /usr/src/app/FUXA/server
RUN npm install
# Workaround for sqlite3 https://stackoverflow.com/questions/71894884/sqlite3-err-dlopen-failed-version-glibc-2-29-not-found
RUN apt-get update && apt-get install -y sqlite3 libsqlite3-dev && \
apt-get autoremove -yqq --purge && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
npm install --build-from-source --sqlite=/usr/bin sqlite3
# Add project files
ADD . /usr/src/app/FUXA
# Set working directory
WORKDIR /usr/src/app/FUXA/server
# Expose port
EXPOSE 1881
# Start the server
CMD [ "npm", "start" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bonn_admin/FUXA.git
git@gitee.com:bonn_admin/FUXA.git
bonn_admin
FUXA
FUXA
master

搜索帮助