From 56747c2e97a151e4ee2d85be31be3f0bef1ee4e7 Mon Sep 17 00:00:00 2001 From: skidoodle Date: Fri, 31 May 2024 13:21:36 +0200 Subject: [PATCH] chore: Add index.html to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6e49fab..a4e436a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,6 @@ FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=builder /app/iphistory . +COPY --from=builder /app/index.html . EXPOSE 8080 CMD ["./iphistory"]