Giter Club home page Giter Club logo

Comments (2)

lyswhut avatar lyswhut commented on June 19, 2024

我添加了一个dockerfile,你可以试试用它来打包,打出来的镜像100多M

from lx-music-sync-server.

k631583871 avatar k631583871 commented on June 19, 2024

我尝试了dockerfile. 打包了 113MB, 这个大小还可以.

我觉得给dockerfile里面可以添加下面的内容

EXPOSE 9527
ENV PORT 9527
ENV BIND_IP '127.0.0.1'
ENV CONNECT_PWD ''
ENV CONFIG_PATH 'config.js'
ENV LOG_PATH '/server/logs'
ENV DATA_PATH '/server/data'

添加后的样子

FROM node:16-alpine AS builder
WORKDIR /server
COPY . .
# RUN npm install
RUN npm ci
RUN npm run build


FROM node:16-alpine AS final
WORKDIR /server
EXPOSE 9527
ENV PORT 9527
ENV BIND_IP '127.0.0.1'
ENV CONNECT_PWD ''
ENV CONFIG_PATH 'config.js'
ENV LOG_PATH '/server/logs'
ENV DATA_PATH '/server/data'
COPY --from=builder ./server/server ./server
COPY package.json package-lock.json config.js index.js ./
RUN npm ci --omit=dev

CMD [ "npm", "start" ]

from lx-music-sync-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.