Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic

Releases prior to 7.0 has been removed from this file to declutter search results; see the [archived copy](https://github.com/dipdup-io/dipdup/blob/8.0.0b5/CHANGELOG.md) for the full list.

## [Unreleased]

### Fixed

- project: Fixed `make image` command and default workdir.

## [8.3.3] - 2025-04-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/demo_blank/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_blank/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_blank
WORKDIR demo_blank
WORKDIR /home/dipdup/demo_blank
2 changes: 1 addition & 1 deletion src/demo_evm_events/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_evm_events/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_evm_events
WORKDIR demo_evm_events
WORKDIR /home/dipdup/demo_evm_events
2 changes: 1 addition & 1 deletion src/demo_evm_transactions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_evm_transactions/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_evm_transactions
WORKDIR demo_evm_transactions
WORKDIR /home/dipdup/demo_evm_transactions
2 changes: 1 addition & 1 deletion src/demo_evm_uniswap/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_evm_uniswap/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_evm_uniswap
WORKDIR demo_evm_uniswap
WORKDIR /home/dipdup/demo_evm_uniswap
2 changes: 1 addition & 1 deletion src/demo_starknet_events/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_starknet_events/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_starknet_events
WORKDIR demo_starknet_events
WORKDIR /home/dipdup/demo_starknet_events
2 changes: 1 addition & 1 deletion src/demo_substrate_events/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_substrate_events/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_substrate_events
WORKDIR demo_substrate_events
WORKDIR /home/dipdup/demo_substrate_events
2 changes: 1 addition & 1 deletion src/demo_tezos_auction/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_auction/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_auction
WORKDIR demo_tezos_auction
WORKDIR /home/dipdup/demo_tezos_auction
2 changes: 1 addition & 1 deletion src/demo_tezos_dao/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_dao/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_dao
WORKDIR demo_tezos_dao
WORKDIR /home/dipdup/demo_tezos_dao
2 changes: 1 addition & 1 deletion src/demo_tezos_dex/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_dex/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_dex
WORKDIR demo_tezos_dex
WORKDIR /home/dipdup/demo_tezos_dex
2 changes: 1 addition & 1 deletion src/demo_tezos_domains/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_domains/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_domains
WORKDIR demo_tezos_domains
WORKDIR /home/dipdup/demo_tezos_domains
2 changes: 1 addition & 1 deletion src/demo_tezos_events/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_events/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_events
WORKDIR demo_tezos_events
WORKDIR /home/dipdup/demo_tezos_events
2 changes: 1 addition & 1 deletion src/demo_tezos_factories/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_factories/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_factories
WORKDIR demo_tezos_factories
WORKDIR /home/dipdup/demo_tezos_factories
2 changes: 1 addition & 1 deletion src/demo_tezos_head/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_head/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_head
WORKDIR demo_tezos_head
WORKDIR /home/dipdup/demo_tezos_head
2 changes: 1 addition & 1 deletion src/demo_tezos_nft_marketplace/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_nft_marketplace/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_nft_marketplace
WORKDIR demo_tezos_nft_marketplace
WORKDIR /home/dipdup/demo_tezos_nft_marketplace
2 changes: 1 addition & 1 deletion src/demo_tezos_raw/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_raw/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_raw
WORKDIR demo_tezos_raw
WORKDIR /home/dipdup/demo_tezos_raw
2 changes: 1 addition & 1 deletion src/demo_tezos_token/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_token/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_token
WORKDIR demo_tezos_token
WORKDIR /home/dipdup/demo_tezos_token
2 changes: 1 addition & 1 deletion src/demo_tezos_token_balances/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_token_balances/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_token_balances
WORKDIR demo_tezos_token_balances
WORKDIR /home/dipdup/demo_tezos_token_balances
2 changes: 1 addition & 1 deletion src/demo_tezos_token_transfers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/demo_tezos_token_transfers/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:8
# RUN pip install .

COPY --chown=dipdup . demo_tezos_token_transfers
WORKDIR demo_tezos_token_transfers
WORKDIR /home/dipdup/demo_tezos_token_transfers
2 changes: 1 addition & 1 deletion src/dipdup/projects/base/Makefile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ lint: ## Lint code with ruff and mypy
##

image: ## Build Docker image
docker buildx build . -t ${PACKAGE}:${TAG} --load
docker buildx build . -f deploy/Dockerfile -t ${PACKAGE}:${TAG} --load

up: ## Start Compose stack
docker-compose -f ${COMPOSE} up -d --build
Expand Down
2 changes: 1 addition & 1 deletion src/dipdup/projects/base/deploy/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FROM dipdup/dipdup:{{ project.dipdup_version }}
# RUN pip install .

COPY --chown=dipdup . {{ project.package }}
WORKDIR {{ project.package }}
WORKDIR /home/dipdup/{{ project.package }}