From 144942e1713900e1d395faac1ec7eef7768e5800 Mon Sep 17 00:00:00 2001 From: Frithjof Winkelmann Date: Mon, 30 Sep 2024 15:15:04 +0200 Subject: [PATCH] Remove data from dockerfile --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f495295..f37ca3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,6 @@ FROM node:20.5.1 AS frontend_build WORKDIR /app -COPY ./backend-rust/download_data.sh ./ -RUN ./download_data.sh && ls && ls data - COPY ./frontend/package.json ./ COPY ./frontend/package-lock.json ./ @@ -34,7 +31,7 @@ FROM docker.io/debian:bookworm-slim WORKDIR /app -COPY --from=frontend_build /app/data ./data +RUN mkdir data ## copy the main binary COPY --from=backend_build /build/main ./