Skip to content

Commit 23b66da

Browse files
1 parent cbc6a92 commit 23b66da

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ updates:
1212
schedule:
1313
interval: "daily"
1414

15-
# Docker - docker/openemr/8.0.0
15+
# Docker - docker/openemr/8.1.0
1616
- package-ecosystem: "docker"
17-
directory: "/docker/openemr/8.0.0"
17+
directory: "/docker/openemr/8.1.0"
1818
schedule:
1919
interval: "daily"
2020

.github/workflows/build-800.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Production 8.0.0 Docker Build
1+
name: Production 8.1.0 Docker Build
22

33
on:
44
workflow_dispatch:
@@ -25,14 +25,14 @@ jobs:
2525
- name: Get build date
2626
id: build_date
2727
run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
28-
- name: Build and push 8.0.0 docker
28+
- name: Build and push 8.1.0 docker
2929
uses: docker/build-push-action@v7
3030
with:
31-
context: "{{defaultContext}}:docker/openemr/8.0.0"
31+
context: "{{defaultContext}}:docker/openemr/8.1.0"
3232
# DROP the `:8.0.0.3` and `:8.0.0.3-<date>` tags when current moves
3333
# off 8.0.0. 8.1.x onward uses plain semver; the 4-part patch tag is
3434
# legacy quaternary versioning. See tools/release/versions.yml and #746.
35-
tags: openemr/openemr:8.0.0, openemr/openemr:8.0.0.3, openemr/openemr:8.0.0.3-${{ steps.build_date.outputs.date }}, openemr/openemr:latest
35+
tags: openemr/openemr:8.1.0, openemr/openemr:8.0.0.3, openemr/openemr:8.0.0.3-${{ steps.build_date.outputs.date }}, openemr/openemr:latest
3636
platforms: linux/amd64,linux/arm64
3737
push: true
3838
no-cache: true

docker/openemr/8.0.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ RUN ln -sf /usr/bin/php${PHP_VERSION_ABBR} /usr/bin/php
9191
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
9292

9393
RUN apk add --no-cache build-base \
94-
&& git clone https://github.com/openemr/openemr.git --branch rel-800 --depth 1 \
94+
&& git clone https://github.com/openemr/openemr.git --branch rel-810 --depth 1 \
9595
&& rm -rf openemr/.git \
9696
&& cd openemr \
9797
&& composer install --no-dev \

tools/release/versions.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ version: 1
1919

2020
slots:
2121
current:
22-
minor: "8.0"
23-
full: "8.0.0"
22+
minor: "8.1"
23+
full: "8.1.0"
2424
# DROP THIS LINE when current moves off 8.0.0. The 4-part patch field is
2525
# legacy quaternary versioning; 8.1.x onward uses plain semver (8.1.1 is
2626
# the next release after 8.1.0, not a 4-part patch). When the 8.1.0 tag
2727
# rotation PR opens, remove this line and the `:8.0.0.3` docker tags in
2828
# .github/workflows/build-800.yml as part of PR review. See #746.
2929
patch: "8.0.0.3"
30-
branch: "rel-800"
31-
docker_dir: "8.0.0"
30+
branch: "rel-810"
31+
docker_dir: "8.1.0"
3232
next:
3333
minor: "8.1"
3434
full: "8.1.0"

0 commit comments

Comments
 (0)