lust/Dockerfile

25 lines
493 B
Docker
Raw Normal View History

2022-03-14 22:24:53 +00:00
FROM rust:slim-buster as build
2021-06-04 20:04:12 +00:00
2022-03-26 20:27:32 +00:00
WORKDIR /app
2022-03-14 22:24:53 +00:00
2022-03-26 20:27:32 +00:00
COPY . /app
2022-03-30 23:28:11 +00:00
USER root
2021-06-04 20:04:12 +00:00
2022-03-30 23:28:11 +00:00
RUN apt-get update
RUN apt-get install libssl-dev pkg-config -y
2021-06-04 20:04:12 +00:00
RUN cargo build --release
2022-03-14 22:24:53 +00:00
# Copy the binary into a new container for a smaller docker image
FROM debian:buster-slim
2021-06-05 23:55:52 +00:00
2022-03-14 22:47:07 +00:00
WORKDIR /etc/lust
2022-03-30 23:40:20 +00:00
RUN apt-get update \
&& apt-get install -y ca-certificates libssl-dev pkg-config \
2022-03-30 23:40:20 +00:00
&& rm -rf /var/lib/apt/lists/*
2022-03-31 12:25:59 +00:00
COPY --from=build /app/target/release/lust ./
2022-03-14 22:24:53 +00:00
USER root
2021-06-06 15:37:41 +00:00
ENTRYPOINT ["./lust", "--host", "0.0.0.0"]