Update alpine version

This commit is contained in:
JRoot Junior 2024-01-07 15:31:06 +02:00
parent c02ea22eb8
commit 0cb82ef84a
No known key found for this signature in database
GPG Key ID: 738964250D5FF6E2
2 changed files with 8 additions and 4 deletions

View File

@ -4,8 +4,8 @@ on:
push:
branches:
- master
# schedule:
# - cron: '20 4 * * *'
schedule:
- cron: '20 4 * * *'
jobs:
build:
@ -13,6 +13,7 @@ jobs:
runs-on: ubuntu-latest
env:
IMAGE_TAG: ${{ secrets.DOCKERHUB_OWNER }}/telegram-bot-api
ALPINE_VERSION: 3.19
strategy:
matrix:
arch:
@ -95,6 +96,8 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache
platforms: ${{ matrix.arch }}
build-args: |
ALPINE_VERSION=${{ env.ALPINE_VERSION }}
push: false
load: true
tags: |

View File

@ -1,4 +1,5 @@
FROM alpine:3.18 as build
ARG APLINE_VERSION
FROM alpine:${APLINE_VERSION} as build
ENV CXXFLAGS=""
WORKDIR /usr/src/telegram-bot-api
@ -12,7 +13,7 @@ RUN mkdir -p build \
&& cmake --build . --target install -j ${nproc} \
&& strip /usr/src/telegram-bot-api/bin/telegram-bot-api
FROM alpine:3.18
FROM alpine:${APLINE_VERSION}
ENV TELEGRAM_WORK_DIR="/var/lib/telegram-bot-api" \
TELEGRAM_TEMP_DIR="/tmp/telegram-bot-api"