delete obsolete dockerfile
continuous-integration/drone/push Build is passing Details

This commit is contained in:
LordMZTE 2021-08-17 23:03:14 +02:00
parent e72b92a678
commit ae0bd48c38
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
# this uses buster as alpine would always segfault
FROM rust:buster as builder
LABEL maintainer="LordMZTE <https://github.com/lordmzte>"
RUN apt install \
gcc \
libssl-dev
WORKDIR /usr/src/ruff
COPY Cargo.toml ./
COPY src/ src/
RUN cargo build --release
FROM debian:buster
COPY --from=builder /usr/src/ruff/target/release/ruff /usr/bin
RUN apt update
RUN apt install \
libssl1.1
VOLUME /ruffconfig
CMD /usr/bin/ruff -c /ruffconfig/config.toml