Skip to content

Commit

Permalink
Merge branch 'dvush-new-sc' of ssh://tr:/home/dvush/code/zksync-dev i…
Browse files Browse the repository at this point in the history
…nto dvush-new-sc
  • Loading branch information
dvush committed Dec 11, 2020
2 parents 3e9ed36 + 6573616 commit 3031cd0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
!package.json
!Cargo.lock
!Cargo.toml
!contracts/build
!contracts/artifacts
!infrastructure/explorer/index.html
!infrastructure/explorer/dist
!infrastructure/fee-seller
Expand Down
2 changes: 1 addition & 1 deletion docker/prover/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ COPY --from=builder /usr/src/zksync/target/release/plonk_step_by_step_prover /bi
COPY --from=builder /usr/src/zksync/target/release/dummy_prover /bin/
COPY docker/prover/prover-entry.sh /bin/
COPY keys/packed /keys/packed
COPY contracts/build /contracts/build
COPY contracts/artifacts/ /contracts/artifacts/

CMD ["prover-entry.sh"]
2 changes: 1 addition & 1 deletion docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ EXPOSE 3000
EXPOSE 3031
EXPOSE 3030
COPY --from=builder /usr/src/zksync/target/release/zksync_server /usr/bin
COPY contracts/build/ /contracts/build/
COPY contracts/artifacts/ /contracts/artifacts/
ENTRYPOINT ["zksync_server"]
2 changes: 1 addition & 1 deletion infrastructure/zk/src/kube.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function updateConfig() {
namespace = 'dev';
} else if (env == 'prod') {
namespace = 'zksync';
} else if (['stage', 'rinkeby', 'ropsten', 'breaking'].includes(env)) {
} else if (['stage', 'rinkeby', 'ropsten', 'breaking', 'rinkeby-beta', 'rospten-beta'].includes(env)) {
namespace = env;
} else {
console.error('Unknown environment');
Expand Down

0 comments on commit 3031cd0

Please sign in to comment.