remove file
All checks were successful
Rust Checks / checks (push) Successful in 1m18s
Rust Checks / checks (pull_request) Successful in 1m5s

This commit is contained in:
CoCo_Sol 2024-02-12 00:03:35 +01:00
parent 79bbc45331
commit dce0df4cb1

View file

@ -1,11 +0,0 @@
FROM rust:alpine AS builder
RUN apk add musl-dev
WORKDIR /app
COPY . .
RUN cargo build --package relay-server --release
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/target/release/relay-server .
EXPOSE 80/tcp
CMD ["./relay-server"]