From 3f59312dfc370e98dcb948afa8ac8c2f17abfb76 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Sun, 11 Aug 2024 17:27:30 +0100 Subject: [PATCH] build: copy data into correct location in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 79b1d16..e38329d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ FROM golang:bookworm AS final ARG TARGETARCH COPY --from=support /opt/build/dist/*_linux_${TARGETARCH}* /opt/jfa-go -COPY --from=support /opt/build/build/data /opt/jfa-go/ +COPY --from=support /opt/build/build/data /opt/jfa-go/data RUN apt-get update -y && apt-get install libolm-dev -y