
* remove zokrates_solidity_test, use foundry for integration tests * fix foundry install * fix foundry install * use full path for forge * wip * wip * wip * test * test * test * test * test * add message if foundry is missing, add changelog * move install script to ci config * Apply suggestions from code review --------- Co-authored-by: Thibaut <thibaut@Thibauts-MacBook-Pro.local>
12 lines
219 B
Docker
12 lines
219 B
Docker
FROM rustlang/rust:nightly
|
|
|
|
RUN useradd -u 1000 -m zokrates
|
|
|
|
COPY ./scripts/install_foundry_deb.sh /tmp/
|
|
RUN /tmp/install_foundry_deb.sh
|
|
|
|
USER zokrates
|
|
|
|
WORKDIR /home/zokrates
|
|
|
|
COPY --chown=zokrates:zokrates . ZoKrates
|