deeplXnodeless / Dockerfile
MISASI's picture
Update Dockerfile
93cba4e verified
raw
history blame
210 Bytes
FROM node:lts
RUN apt-get clean && apt-get update && apt-get install -y --no-install-recommends git
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
EXPOSE 7860
RUN node server.js