inflearn logo
Course

Course

Instructor

ghdxodml4791's Posts

ghdxodml4791 ghdxodml4791

@ghdxodml4791

Reviews Written
-
Average Rating
-

Posts 7

Q&A

marker.d.ts 관련

현재는 extends MapMarkerProps를 뺀 형태로 우선 넘어갔습니다. interface CustomMarkerProps { coordinate?: LatLng; color: MarkerColor; score?: number; }

Likes
1
Comments
2
Viewcount
329

Q&A

트레비스에서 he command "docker run -e CI=true tedkov2024/docker-react-nginx-app npm run test -- --coverage" exited with 127. 형태로 에러가 발생합니다.

도커파일을 아래와 같이 수정하니되었습니다. # 기존의 Node.js 빌드 스테이지 FROM node:alpine as builder WORKDIR '/usr/src/app' COPY package.json ./ RUN npm install COPY ./ ./ RUN npm run test -- --coverage RUN npm run build # Nginx 스테이지 FROM nginx COPY --from=builder /usr/src/app/build /usr/share/nginx/html

Likes
0
Comments
1
Viewcount
342