Skip to content

Commit

Permalink
dev: fix deployer Dockerfile (#1512)
Browse files Browse the repository at this point in the history
Fixes issues with deployer Dockerfile:
- .env must be copied
- issues when building sol contracts due to starknet -> Starknet
capitalization

<!-- Reviewable:start -->
- - -
This change is [<img src="https://reviewable.io/review_button.svg"
height="34" align="absmiddle"
alt="Reviewable"/>](https://reviewable.io/reviews/kkrt-labs/kakarot/1512)
<!-- Reviewable:end -->
  • Loading branch information
enitrat authored Oct 21, 2024
1 parent 8ff7b14 commit b8f5f2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docker/deployer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ ARG GITHUB_TOKEN
ENV GITHUB_TOKEN=${GITHUB_TOKEN}

COPY . .
COPY .env.example .env

SHELL ["/bin/bash", "-c"]
RUN source "$HOME/.cargo/env" && uv venv && uv pip install -e .
Expand Down
2 changes: 1 addition & 1 deletion solidity_contracts/src/Starknet/StarknetMessagingLocal.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0.
pragma solidity ^0.8.0;

import "../Starknet/StarknetMessaging.sol";
import "./StarknetMessaging.sol";

/**
@notice Interface related to local messaging for Starknet.
Expand Down

0 comments on commit b8f5f2a

Please sign in to comment.