No tarball for gmail

This commit is contained in:
2022-07-24 22:31:25 -04:00
commit ba9cb2c7cd
10 changed files with 1347 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM rust as builder
WORKDIR /opt/pubsub-client
COPY . .
RUN apt update
RUN apt install -y cmake
RUN cargo build --release
FROM rust
WORKDIR /opt/
COPY --from=builder /opt/pubsub-client/target/release/client .
ENTRYPOINT ["/opt/client"]