创建 React App 无法在 docker 中构建
2021-06-26
4154
我正在尝试将 React 应用程序 docker 化。 由于我使用的是 tailwindcss,因此它使用 craco 进行构建。 直到今天构建开始抛出 CSS 文件错误之前,它一直运行正常。
错误
> [admin-build 7/7] RUN npm run build:
#15 1.594
#15 1.594 > [email protected] build /app
#15 1.594 > craco build
#15 1.594
#15 3.555 craco: *** Cannot find ESLint loader (eslint-loader). ***
#15 3.873 Creating an optimized production build...
#15 89.72 Failed to compile.
#15 89.72
#15 89.72 ./src/styles/index.css
#15 89.72 TypeError: Cannot convert undefined or null to object
#15 89.72 at Function.entries (<anonymous>)
#15 89.72 at Array.forEach (<anonymous>)
#15 89.72
#15 89.72
#15 89.75 npm ERR! code ELIFECYCLE
#15 89.75 npm ERR! errno 1
#15 89.76 npm ERR! [email protected] build: `craco build`
#15 89.76 npm ERR! Exit status 1
#15 89.76 npm ERR!
#15 89.76 npm ERR! Failed at the [email protected] build script.
#15 89.76 npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
#15 89.76
#15 89.76 npm ERR! A complete log of this run can be found in:
#15 89.76 npm ERR! /root/.npm/_logs/2021-06-26T14_32_59_262Z-debug.log
------
我的 Dockerfile
# base image
FROM node:14-alpine as admin-build
# workdir
RUN mkdir /app
WORKDIR /app
# Install dependencies
COPY package.json ./
RUN npm install
# copy source
COPY . .
# build source
RUN npm run build
# Nginx for serving
FROM nginx:alpine
# copy configs
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=admin-build /app/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
应用程序在 docker 之外正确构建。 有什么方法可以修复此问题,或者至少查看问题所在吗?
谢谢
2个回答
只需将 ENV 添加到 Dockerfile,
这个对我来说很好用:
FROM node:13.12.0-alpine as build
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
COPY package-lock.json ./
RUN npm install
COPY . ./
RUN npm run build
# production environment
FROM nginx:stable-alpine
COPY --from=build /app/build /usr/share/nginx/html
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
ariefs
2021-06-26
这是 docker 中 node 版本的问题。 我在本地设置中使用 node 16 和 npm 版本 7,而在 docker 中,它运行的是 node-14 和 npm 6。 这似乎导致了 craco 出现问题。
在更新 docker 文件以使用
node-16:alpine
后,它就正常工作了。
Arjun Atlast
2022-07-31