llama3-8b-inf2 / Dockerfile
cszhzleo's picture
Update Dockerfile
02fe577 verified
raw
history blame contribute delete
No virus
216 Bytes
FROM nginx:latest
RUN useradd -m -u 1000 user
USER user
COPY --chown=user default.conf /etc/nginx/conf.d/default.conf
COPY --chown=user nginx.conf /etc/nginx/nginx.conf
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]