Skip to content

Commit

Permalink
feat: dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rswanson committed May 2, 2024
1 parent a3114bf commit a3b920e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM arm64v8/ubuntu:latest

RUN apt-get update && apt-get install -y curl unzip
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
RUN unzip awscliv2.zip
RUN ./aws/install

COPY target/aarch64-unknown-linux-gnu/release/zenith-builder-example /usr/local/bin/zenith-builder-example

# Run the server
CMD ["/usr/local/bin/zenith-builder-example"]

0 comments on commit a3b920e

Please sign in to comment.