Skip to content

Commit 69ff0c6

Browse files
committed
update dockerfile
1 parent 0d4e015 commit 69ff0c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Publish Docker Image. On dispatch event build the latest tag and push to Docker Hub
1+
name: Build Docker Image. On tag creation push to Docker Hub. On dispatch event build the latest tag and push to Docker Hub
22

33
on:
44
workflow_dispatch:

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM python:3.12.6-alpine3.20 AS base
1+
FROM python:3.12.9-alpine3.21 AS base
22
WORKDIR /usr/cycode/app
3-
RUN apk add git=2.45.2-r0
3+
RUN apk add git=2.47.2-r0
44

55
FROM base AS builder
66
ENV POETRY_VERSION=1.8.3
77

88
# deps are required to build cffi
9-
RUN apk add --no-cache --virtual .build-deps gcc=13.2.1_git20240309-r0 libffi-dev=3.4.6-r0 musl-dev=1.2.5-r0 && \
9+
RUN apk add --no-cache --virtual .build-deps gcc=14.2.0-r4 libffi-dev=3.4.6-r0 musl-dev=1.2.5-r9 && \
1010
pip install --no-cache-dir "poetry==$POETRY_VERSION" "poetry-dynamic-versioning[plugin]" && \
1111
apk del .build-deps gcc libffi-dev musl-dev
1212

0 commit comments

Comments
 (0)