From 0287cbacbd864816eb6545a0ff75490841899330 Mon Sep 17 00:00:00 2001 From: John Smith Date: Thu, 28 Nov 2024 21:38:14 +1030 Subject: [PATCH] fix: Correct App image build intermediate target --- .github/workflows/build.yml | 2 +- app/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa758bd1..21e38415 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build and Test +name: Build, Test, Deploy on: push: diff --git a/app/Dockerfile b/app/Dockerfile index a1182432..79aa1075 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -51,8 +51,8 @@ COPY --from=build /build/ /app COPY --from=build /build/package.json /app/package.json COPY --from=build /build/node_modules /app/node_modules -COPY --from=build-playground /build/.next/standalone/playground /app -COPY --from=build-playground /build/.next/static /app/.next/static +COPY --from=build /build/.next/standalone/playground /app +COPY --from=build /build/.next/static /app/.next/static ENV NODE_ENV=production