mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-04 07:43:28 +08:00
7 lines
131 B
Nginx Configuration File
7 lines
131 B
Nginx Configuration File
FROM nginx:1.27.5-alpine3.21
|
|
|
|
COPY ./build/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |