remove root dockerfile

This commit is contained in:
cathugger 2023-08-06 18:13:40 +00:00
parent 7494db1a82
commit 8730653589
No known key found for this signature in database
GPG key ID: 9BADDA2DAF6F01A8

View file

@ -1,11 +0,0 @@
FROM debian:bookworm as builder
WORKDIR /app
RUN apt-get update && apt-get install -y gcc libc6-dev libsodium-dev make autoconf
COPY . .
RUN ./autogen.sh && ./configure --enable-amd64-51-30k LDFLAGS=-static
RUN make
FROM debian:bookworm-slim
WORKDIR /app
COPY --from=builder /app/mkp224o .
ENTRYPOINT [ "./mkp224o" ]