Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit c341826

Browse files
committed
Fix: Adjust Dockerfile location
1 parent 68a6461 commit c341826

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/docker.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
uses: docker/build-push-action@v4
2525
with:
2626
context: .
27+
file: docker/Dockerfile
2728
load: true
2829
# build only for current architecture (usually linux/amd64) to enable local loading
2930
platforms: linux/amd64
@@ -63,6 +64,7 @@ jobs:
6364
uses: docker/build-push-action@v4
6465
with:
6566
context: .
67+
file: docker/Dockerfile
6668
push: true
6769
platforms: linux/amd64,linux/arm64,linux/arm/v7
6870
tags: ghcr.io/${{ github.repository_owner }}/dockstatapi:${{ env.IMAGE_TAG }}

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG VCS_REF
44
FROM oven/bun:alpine AS base
55
WORKDIR /base
66

7-
COPY package.json bun.lock ./
7+
COPY package.json ./
88
RUN bun install -p
99

1010
COPY . .

0 commit comments

Comments
 (0)