api-sadteam / Dockerfile
akkun3704's picture
Create Dockerfile
3e20395
raw
history blame
190 Bytes
FROM node:latest
RUN apt-get update && apt-get install -y && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
EXPOSE 7860
CMD ["node", "index.js"]