【发布时间】:2020-08-30 19:02:40
【问题描述】:
我正在为我的博客和工作网站使用云运行,我真的很喜欢它。 我根据谷歌教程通过容器化部署了 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 捆绑在他们的容器中。所以我想澄清一下。我正在做的事情有什么缺点吗?
【问题讨论】:
标签: google-cloud-platform google-cloud-run