File size: 491 Bytes
ce0fa1e a3771da ce0fa1e 2fc4496 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
ARG QUARTO_VERSION="1.4.550"
# Use the Quarto base image
FROM ghcr.io/quarto-dev/quarto:${QUARTO_VERSION} AS builder
COPY src /app
WORKDIR /app
# Install Python requirements
USER root
RUN apt-get update && apt-get install -y python3 python3-pip
COPY requirements.txt /app/
RUN pip3 install -r requirements.txt
RUN quarto render index.qmd
EXPOSE 7860
# CMD ["python3", "-m", "http.server", "7860", "--directory", "_site"]
CMD ["python3", "-m", "http.server", "7860", "--directory", "."]
|