Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ WORKDIR /app
RUN apt-get update && apt-get install -y \
curl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*

RUN curl -L -o quarto.deb https://quarto.org/download/latest/quarto-linux-amd64.deb \
&& apt-get update \
&& curl -L -o quarto.deb https://quarto.org/download/latest/quarto-linux-amd64.deb \
&& apt-get install -y ./quarto.deb \
&& apt-get clean \
&& rm -fr /var/lib/apt/lists/ \
&& rm quarto.deb

COPY package*.json ./
Expand All @@ -29,4 +28,4 @@ COPY --from=builder /app/build /usr/share/nginx/html

EXPOSE 80

CMD ["nginx", "-g", "daemon off;"]
CMD ["nginx", "-g", "daemon off;"]
Loading