We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8d67b commit cd770f5Copy full SHA for cd770f5
.github/assets/Dockerfile
@@ -1,6 +1,6 @@
1
FROM ubuntu
2
3
-COPY target/release/odyssey /usr/local/bin
+COPY dist/odyssey /usr/local/bin
4
5
# Copy licenses
6
COPY LICENSE-* ./
.github/workflows/e2e.yml
@@ -37,6 +37,8 @@ jobs:
37
- name: Build Odyssey
38
run: |
39
cargo build --profile release --locked --bin odyssey &&
40
+ mkdir dist/ &&
41
+ cp ./target/release/odyssey dist/odyssey &&
42
docker buildx build . --load -f .github/assets/Dockerfile -t ghcr.io/ithacaxyz/odyssey:latest
43
- name: Run enclave
44
id: kurtosis
0 commit comments