cscheid/quarto-space-test
0
1ARG QUARTO_VERSION="1.4.550"2 3# Use the Quarto base image4FROM ghcr.io/quarto-dev/quarto:${QUARTO_VERSION} AS builder5 6COPY src /app7WORKDIR /app8 9# Install Python requirements10USER root11RUN apt-get update && apt-get install -y python3 python3-pip12COPY requirements.txt /app/13RUN pip3 install -r requirements.txt14 15RUN quarto render .16 17EXPOSE 786018CMD ["python3", "-m", "http.server", "7860", "--directory", "_site"]