diff options
| -rw-r--r-- | Earthfile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,6 +1,6 @@ VERSION 0.7 -FROM oven/bun:1.0.15 +FROM oven/bun:1.0.15-alpine WORKDIR /due @@ -9,9 +9,7 @@ all: BUILD +docker deps: - RUN apt update -y - RUN apt upgrade -y - RUN apt install sqlite3 -y + RUN apk add --update --no-cache sqlite-dev COPY package.json ./ COPY bun.lockb ./ @@ -72,7 +70,7 @@ build: SAVE ARTIFACT build ./build docker: - FROM +deps + FROM oven/bun:1.0.15-alpine COPY +build/build ./build |