spotifyapi / Dockerfile
ccprojects's picture
Create Dockerfile
5d43621 verified
raw
history blame contribute delete
155 Bytes
FROM node:20
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
USER root
CMD node index.js && node bot.js