Initial commit

This commit is contained in:
Kavin 2022-11-23 05:40:44 +00:00
commit 35a079424d
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
13 changed files with 2584 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM rustlang/rust:nightly-slim AS builder
WORKDIR /app/
COPY . .
RUN cargo build --release
FROM alpine:latest
WORKDIR /app/
COPY --from=builder /app/target/release/region-restriction-checker .
CMD ["./region-restriction-checker"]