v / Dockerfile
NexusV1's picture
Update Dockerfile
055b20b verified
Raw
History Blame Contribute Delete
176 Bytes
FROM node:20
WORKDIR /app
RUN chmod -R 777 /app \
&& apt-get update && apt-get install -y git
COPY start.sh /start.sh
RUN chmod +x /start.sh
EXPOSE 7860
CMD ["/start.sh"]