mirror of
https://github.com/TeamPiped/region-restriction-checker.git
synced 2024-08-14 23:57:10 +00:00
Initial commit
This commit is contained in:
commit
35a079424d
13 changed files with 2584 additions and 0 deletions
15
Dockerfile
Normal file
15
Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue