mirror of
https://github.com/status-im/status-go.git
synced 2026-08-27 15:11:09 +00:00
tests-functional/ -> test/functional/ tests-unit-network/ -> test/unit-network/ No Go code changes beyond the two package paths. Every reference follows: Makefile targets, the pytest-lint and reliability workflows, the three Jenkinsfiles, the root Dockerfile, pyrightconfig.json, .gitignore, the benchmark and functional-test scripts, and the docs. All paths inside the moved directories are self-contained (docker compose uses `context: .`, the Python helpers resolve from __file__), so the extra level of nesting does not reach outside. refs #7067
12 lines
292 B
Docker
12 lines
292 B
Docker
FROM ghcr.io/foundry-rs/foundry:v1.4.0
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy contracts that need to be pre-deployed
|
|
RUN mkdir -p /app/contracts
|
|
COPY contracts/Multicall3.sol /app/contracts/
|
|
COPY contracts/UniversalResolver.sol /app/contracts/
|
|
|
|
COPY --chmod=0755 *.sh /app
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ] |