You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
711 B
29 lines
711 B
FROM rustlang/rust:nightly-buster AS build
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y musl-tools
|
|
|
|
RUN rustup --version
|
|
RUN rustup target add x86_64-unknown-linux-musl
|
|
|
|
RUN rustc --version && \
|
|
rustup --version && \
|
|
cargo --version
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN cargo clean && cargo build --release --target x86_64-unknown-linux-musl
|
|
RUN strip ./target/x86_64-unknown-linux-musl/release/vigil
|
|
|
|
FROM alpine:latest
|
|
|
|
WORKDIR /usr/src/vigil
|
|
|
|
COPY ./res/assets/ ./res/assets/
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
COPY --from=build /app/target/x86_64-unknown-linux-musl/release/vigil /usr/local/bin/vigil
|
|
|
|
CMD [ "vigil", "-c", "/etc/vigil.cfg" ]
|
|
|
|
EXPOSE 8080
|