typst/Dockerfile

11 lines
259 B
Docker
Raw Normal View History

2023-04-07 08:30:45 +00:00
FROM rust:alpine AS build
COPY . /app
WORKDIR /app
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
RUN apk add --update musl-dev \
&& cargo build -p typst-cli --release
FROM alpine:latest
WORKDIR /root/
COPY --from=build /app/target/release/typst /bin