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