antikudeta-bot / Dockerfile
kevcodex's picture
Update Dockerfile
e75b495 verified
raw
history blame contribute delete
274 Bytes
FROM node:20
RUN apt-get update && apt-get install -y \
ffmpeg \
imagemagick \
webp \
curl \
wget \
git \
&& apt-get clean
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "index.js"]