ikyybot / Dockerfile
Ikyy's picture
Update Dockerfile
adaf00f verified
raw
history blame contribute delete
389 Bytes
FROM node:lts-buster
RUN apt-get update && \
apt-get install -y \
git \
ffmpeg \
imagemagick \
webp && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN git clone https://diki6969:[email protected]/diki6969/ikyybot-rpg.git
WORKDIR /app/ikyybot-rpg
RUN npm install --force
EXPOSE 7860
RUN chmod -R 777 /app
CMD ["npm", "start"]