Skip to content

Commit

Permalink
version fix and python version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram van Dartel committed Feb 23, 2024
1 parent afa7563 commit 1d33da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ concurrency:
env:
DOCKER_TARGET_REPO: xirixiz/dsmr-reader-docker
DOCKERFILE: Dockerfile
DOCKER_TARGET_RELEASE: 2024.02.21
DOCKER_TARGET_RELEASE: 2024.02.02

jobs:
################################################
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM python:3-alpine3.19 as staging
FROM --platform=$BUILDPLATFORM python:3.11-alpine3.19 as staging
WORKDIR /app

ARG DSMR_VERSION
Expand All @@ -9,7 +9,7 @@ RUN echo "**** Download DSMR ****" \
&& curl -SskLf "https://github.com/dsmrreader/dsmr-reader/archive/refs/tags/v${DSMR_VERSION}.tar.gz" | tar xvzf - --strip-components=1 -C /app \
&& curl -SskLf "https://raw.githubusercontent.com/dsmrreader/dsmr-reader/v5/dsmr_datalogger/scripts/dsmr_datalogger_api_client.py" -o /app/dsmr_datalogger_api_client.py

FROM python:3-alpine3.19
FROM python:3.11-alpine3.19

ARG TARGETARCH
ARG TARGETVARIANT
Expand Down

0 comments on commit 1d33da5

Please sign in to comment.