File size: 216 Bytes
01eae1a
75eac6d
 
6d6d5ef
02fe577
 
26d9dd2
02fe577
1
2
3
4
5
6
7
8
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;"]