nexc / Dockerfile
NexusV1's picture
Create Dockerfile
130fa7a verified
Raw
History Blame Contribute Delete
235 Bytes
FROM node:18
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/reaperofssa/aniC.git /app
WORKDIR /app
RUN npm install express crypto bcrypt
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "server.js"]