SpotifyDL-Py-CC / Dockerfile
Jonell01's picture
Update Dockerfile
76a9f57 verified
raw
history blame contribute delete
141 Bytes
FROM node:18
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
USER root
CMD ["node", "index.js"]