1. docker file로 Custom Image 생성
# Dockerfile-feastFROM python:3.10RUN pip install --upgrade pipRUN pip install 'feast[redis]'
docker run 해도 되는데 다른거(환경변수 포트 등등…)설정하기 귀찮으니까 compose로 실행하면서 docker file이 잘 돌아가는지 확인한다.
version: "2.4"services: feast_local: build: context: .. dockerfile: Dockerfile-feast environment: TZ: "Asia/Seoul" restart: always ports: - "6566:7000" tty: true