Step1:我创建了一个NodeJS应用程序的本地docker镜像。这是这个应用程序的dockerfile -
FROM node:8
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
RUN npm install
# If you are building your code for production
# RUN npm ci --only=production
# Bundle app source
COPY . .
#EXPOSE 8080
CMD [ "npm", "start" ]
**第2步:**然后我为这个Node应用程序构建了一个docker镜像。这是构建命令输出 -
C:\Users\shibathethinker\Documents\GitHub\NodeProjects\API_Proxy_ABN>docker build -t api-proxy .
Sending build context to Docker daemon 8.637MB
Step 1/6 : FROM node:8
---> 0bf36d7ccc1e
Step 2/6 : WORKDIR /usr/src/app
---> Running in 7187d65639f1
Removing intermediate container 7187d65639f1
---> 0e34dc93439c
Step 3/6 : COPY package*.json ./
---> 47c0d0ca8c77
Step 4/6 : RUN npm install
---> Running in d7e5163371df
npm WARN [email protected] No repository field.
added 98 packages from 91 contributors and audited 194 packages in 8.598s
found 0 vulnerabilities
Removing intermediate container d7e5163371df
---> 72da705ae792
Step 5/6 : COPY . .
---> 0293df6aa27d
Step 6/6 : CMD [ "npm", "start" ]
---> Running in 251e98c0a0ae
Removing intermediate container 251e98c0a0ae
---> a92d8a95b8cd
Successfully built a92d8a95b8cd
Successfully tagged api-proxy:latest
SECURITY WARNING: You are building a Docker image from Windows against a non-Windows Docker host. All files and directories added to build context will have '-rwxr-xr-x' permissions. It is recommended to double check and reset permissions for sensitive files and directories.
**步骤3:**然后,我想在另一个“React”应用程序中使用此docker镜像。这是应用程序的Dockerfile -
FROM api-proxy:latest
WORKDIR /app
RUN npm install
CMD [ "npm", "start" ]
# stage: 2 — the production environment
FROM nginx:alpine
#COPY —from=react-build /app/build /usr/share/nginx/html
#COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY /build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
Step4:现在我构建并运行了第3步生成的docker镜像。
题:
看起来节点应用程序未在新创建的docker容器上运行。如果我'ssh'进入docker容器,我看不到任何节点服务器在那里运行。我也找不到在这个容器的step1中创建的WORKDIR(/ usr / src / app)。
我做错了什么?如果我能进一步澄清,请告诉我。
您正在进行多阶段docker build。您正在使用nodejs(下载依赖项和缩小版本)构建应用程序,并在nginx Web服务器上复制并运行它。
Nodejs服务器可以在它自己的独立容器中,我认为你已经完成了。客户端实际上是一个网络服务器,例如nginx,apache等,可以为你的反应应用程序的构建提供服务。最后,您将运行2个容器:1个用于nodejs服务器,1个用于nginx webserver。
要将您的反应应用程序的构建放入此nginx Web服务器,您将使用多阶段构建。在第一阶段,您将构建您的反应应用程序,在第二阶段,您将使用nginx图像并将第一阶段的反应构建复制到nginx图像的html文件夹中。