Skip to content

Commit 0b1f5cc

Browse files
stairsjJon Stairs
andauthored
chore(): Fix issue with bump of docker build bake v6 (#43)
* chore(): Fix issue with bump of docker build bake v6 Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com> * force update of sqllite-libs due to cve Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com> * update package definiitoni to avoid poetry install error Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com> --------- Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com> Co-authored-by: Jon Stairs <jonathan.stairs@rewind.com>
1 parent fa02909 commit 0b1f5cc

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
with:
5454
files: |
5555
./docker-bake.hcl
56-
${{ steps.metadata.outputs.bake-file }}
56+
cwd://${{ steps.metadata.outputs.bake-file }}
5757
push: true
5858
load: false
5959
no-cache: true

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
with:
6060
files: |
6161
./docker-bake.hcl
62-
${{ steps.metadata.outputs.bake-file }}
62+
cwd://${{ steps.metadata.outputs.bake-file }}
6363
push: true
6464
no-cache: true
6565
targets: build

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ENV POETRY_HOME="/opt/poetry" \
2121
POETRY_VERSION=1.8.2
2222

2323
RUN apk update && \
24-
apk add --no-cache curl bash
24+
apk add --update --no-cache curl bash 'sqlite-libs>=3.49.2-r1'
2525

2626
# Set the path
2727
ENV PATH="${POETRY_HOME}/bin:${VIRTUAL_ENV}/bin:${PATH}"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
description = "Github Action to send a Slack DM"
55
authors = ["Your Name <you@example.com>"]
66
readme = "README.md"
7+
package-mode = false # Adding since don't need module and using src as directory
78

89
[tool.poetry.dependencies]
910
python = "^3.12"

0 commit comments

Comments
 (0)