Skip to content

Commit

Permalink
img size
Browse files Browse the repository at this point in the history
Signed-off-by: Tommy Hughes <tohughes@redhat.com>
  • Loading branch information
tchughesiv committed Mar 3, 2025
1 parent 7886d5c commit 400828f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -554,12 +554,6 @@ build-feast-operator-docker:

# Dev images

build-feature-server-dev-minimal:
docker buildx build \
-t feastdev/feature-server:dev \
-f sdk/python/feast/infra/feature_servers/multicloud/Dockerfile \
--load sdk/python/feast/infra/feature_servers/multicloud

build-feature-server-dev:
docker buildx build \
-t feastdev/feature-server:dev \
Expand Down
3 changes: 1 addition & 2 deletions infra/feast-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,7 @@ docker-build: ## Build docker image with the manager.
## Build feast docker image.
.PHONY: feast-ci-dev-docker-img
feast-ci-dev-docker-img:
cd ./../.. && make build-feature-server-dev-minimal

cd ./../.. && make build-feature-server-dev

.PHONY: docker-push
docker-push: ## Push docker image with the manager.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ USER 0
RUN npm install -g yarn yalc && rm -rf .npm
USER default

COPY --chown=default . ${APP_ROOT}/src
COPY --chown=default setup.py pyproject.toml README.md Makefile ${APP_ROOT}/src/
COPY --chown=default .git ${APP_ROOT}/src/.git
COPY --chown=default protos ${APP_ROOT}/src/protos
COPY --chown=default ui ${APP_ROOT}/src/ui
COPY --chown=default sdk/python ${APP_ROOT}/src/sdk/python

WORKDIR ${APP_ROOT}/src/ui
RUN npm install && \
Expand Down

0 comments on commit 400828f

Please sign in to comment.