We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d3fe62 + 3831bbf commit a6b3c5bCopy full SHA for a6b3c5b
Dockerfile
@@ -1,8 +1,9 @@
1
-FROM debian:13 as build
+FROM debian:13 AS build
2
+WORKDIR /app
3
COPY ./ ./
4
RUN apt update && apt install -y curl git
5
RUN curl -L https://foundry.paradigm.xyz | bash && . /root/.bashrc && foundryup && forge doc --build
6
7
8
FROM nginx:latest
-COPY --from=build /docs/book /usr/share/nginx/html
9
+COPY --from=build /app/docs/book /usr/share/nginx/html
0 commit comments