Cloud Run 是否需要 NGINX?

2024-01-14

我正在为我的博客和工作网站使用 Cloud Run,我真的很喜欢它。 我已经根据 google 教程通过容器化部署了 python API 和 Vue/Nuxt 应用程序。 我不明白的一件事是为什么前面不需要 NGINX。

# Use the official lightweight Node.js 12 image.
# https://hub.docker.com/_/node
FROM node:12-slim

# Create and change to the app directory.
WORKDIR /usr/src/app

# Copy application dependency manifests to the container image.
# A wildcard is used to ensure both package.json AND package-lock.json are copied.
# Copying this separately prevents re-running npm install on every code change.
COPY package*.json ./

# Install production dependencies.
RUN npm install --only=production

# Copy local code to the container image.
COPY . ./

# Run the web service on container startup.
RUN npm run build
CMD [ "npm", "start" ]
# Use the official lightweight Python image.
# https://hub.docker.com/_/python
FROM python:3.7-slim

# Copy local code to the container image.
ENV APP_HOME /app
WORKDIR $APP_HOME
COPY . ./

# Install production dependencies.
RUN apt-get update && apt-get install -y \
libpq-dev \
gcc
RUN pip install -r requirements.txt

# Run the web service on container startup. Here we use the gunicorn
# webserver, with one worker process and 8 threads.
# For environments with multiple CPU cores, increase the number of workers
# to be equal to the cores available.
CMD exec gunicorn -b :$PORT --workers=4 main:server

所有这一切都可以在我不调用 Nginx 的情况下进行。 但我读了很多文章,人们将 NGINX 捆绑在他们的容器中。所以我想要一些澄清。我所做的事情有什么缺点吗?


使用 NGINX 或静态文件服务器的一大优势是容器镜像的大小。当提供 SPA(没有 SSR)时,您所需要做的就是将捆绑的文件发送给客户端。无需捆绑编译应用程序所需的构建依赖项或运行时。

您的第一个映像是将带有依赖项的整个源代码复制到映像中,而您需要的只是编译后的文件(如果不运行 SSR)。 NGINX 可以为您提供“静态站点服务器”,它只为您的构建提供服务,并且是一个轻量级解决方案。

关于Python,除非你能以某种方式捆绑它,否则看起来不需要NGINX就可以使用。

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Cloud Run 是否需要 NGINX? 的相关文章

随机推荐