From 101c53709dda2ee97a698d10ca15d0d9c0276c4e Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Mon, 21 Apr 2025 22:58:03 -0700 Subject: [PATCH] add woodpecker ci - kaniko --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a35e30..4cfbfc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # see all versions at https://hub.docker.com/r/oven/bun/tags FROM oven/bun:1-alpine AS base WORKDIR /app -COPY package.json bun.lockb /app/ +COPY package.json bun.lock /app/ # install dependencies into temp directory # this will cache them and speed up future builds