From baf30aedda75d716761ff9daaefa561dc38c5bb6 Mon Sep 17 00:00:00 2001 From: Yunus <19399214+yunusefendi52@users.noreply.github.com> Date: Sat, 30 Mar 2024 23:58:50 +0700 Subject: [PATCH] fix dockerfile --- .github/workflows/main_app-deployin.yml | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main_app-deployin.yml b/.github/workflows/main_app-deployin.yml index f7fb161..6964461 100644 --- a/.github/workflows/main_app-deployin.yml +++ b/.github/workflows/main_app-deployin.yml @@ -31,6 +31,7 @@ jobs: with: push: true tags: index.docker.io/${{ secrets.AzureAppService_ContainerUsername_92269a9228e742668c609122ef562b74 }}/app-deployin:${{ github.sha }} + context: . file: ./Dockerfile deploy: diff --git a/Dockerfile b/Dockerfile index 9220be8..2af853c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM oven/bun:1 as builder WORKDIR /builder -COPY package.json bun.lockb /app +COPY package.json bun.lockb //builder/ RUN bun install --frozen-lockfile COPY . .