diff --git a/Dockerfile b/Dockerfile index ea01981..9fe869f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,3 @@ -FROM alpine:latest AS artifacts - -RUN apk add --no-cache curl xz -WORKDIR /tmp - -RUN mkdir -p /artifacts -RUN curl -L -o typst.tar.xz "https://github.com/typst/typst/releases/download/v0.14.2/typst-x86_64-unknown-linux-musl.tar.xz" \ - && tar -xJf typst.tar.xz \ - && mv typst-x86_64-unknown-linux-musl/typst /artifacts - -RUN chmod -R +x /artifacts/ - - FROM python:3.13-slim AS base ENV VIRTUAL_ENV=/app/.venv \ @@ -51,7 +38,6 @@ RUN uv sync --no-install-project FROM base AS runtime COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV} -COPY --from=artifacts /artifacts/ /usr/local/bin/ WORKDIR /app