IT/react11 React 어플리케이션 Dockerfile 작성(개발용) React로 개발된 어플리케이션을 Docker화 하기 위해서 Dockerfile을 작성하고, Google Cloud Platform에 배포하는 방법을 설명한다. [Dockerfile 작성] # node 설치 FROM node:alpine # 작업 디렉토리 설정하고, package.json 복사 WORKDIR /app COPY package.json /app/package.json # npm 설치 RUN npm install # 앱 실행 COPY . /app CMD ["npm", "start"] [docker image 생성] docker build -t gcr.io/[PROJECT_ID]/[IMAGE_NAME]:[TAG] . [image 리스트 확인] gcloud container images list .. 2020. 3. 4. [React] create-react-app 시, yarn의 unexpected error occurred 해결 create-react-app 명령어를 실행할 때, yarn으로 패키지를 설치하는 데, 아래와 같은 에러가 발생했다. error An unexpected error occurred: "https://registry.yarnpkg.com/react: unable to verify the first certificate". 해당 문제는 SSL 문제로 해결방법은 아래와 같다. yarn config set "strict-ssl" false npm에서도 동일한 에러가 발생한다면 아래와 같이 진행 npm config set strict-ssl false 2020. 3. 3. 이전 1 2 다음