Build
-
github actions을 사용해 ec2에 docker 서버 빌드배포하기(ci/cd)Infra/DevOps 2023. 6. 14. 19:12
프로젝트를 클라우드 환경에서 테스트를 하는데, 매번 파일을 업로드하고 빌드/실행 하는게 번거로워서 Github Actions를 이용해 간단한 CI/CD를 만들었다. 적용된 프로젝트는 nestjs로 만든 서버이다. 1. Dockerfile 생성 나의 경우 node 18.12.1 버전으로 개발했지만, 최신 버전을 사용하려면 lts를 붙이면 된다. (latest의 약자다.) FROM node:18.12.1 ARG PORT=9090 RUN mkdir -p /usr/src/app WORKDIR /usr/src/app COPY . ./ RUN yarn install RUN npx prisma generate RUN yarn build:prod EXPOSE $PORT CMD [ "yarn", "start:prod" ..
-
[expo] ios - Invalid code Two-factor Authentication (6 digit code) is enabled for ?카테고리 없음 2021. 12. 22. 14:56
✔ Logged in, verify your Apple account to continue Two-factor Authentication (6 digit code) is enabled for ****@****.com. Learn more: https://support.apple.com/en-us/HT204915 ✔ Please enter the 6 digit code you received at +•• •••-••••-••••: … •••••• ✖ Invalid code Two-factor Authentication (6 digit code) is enabled for ****@****.com. Learn more: https://support.apple.com/en-us/HT204915 ✔ Please..