File size: 187 Bytes
b88f926
 
d42116c
f520ca6
b88f926
f520ca6
f92fd07
bb1b9f3
f92fd07
 
1
2
3
4
5
6
7
8
9
10
FROM node:18-bullseye-slim
EXPOSE 80
EXPOSE 8080

FROM nginxinc/nginx-unprivileged 
USER nginx
COPY nginx.conf /etc/nginx/nginx.conf
#PID /tmp/nginx.pid

CMD ["nginx", "-c", "nginx.conf"]