You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM nginx:1.25.3-alpine
|
|
|
|
# 从构建阶段复制构建结果到nginx目录
|
|
ADD go_fish_web.tar.gz /usr/share/nginx/html
|
|
|
|
# 复制nginx配置
|
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |