Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 58da8a7

Browse files
committed
Update to Alpine 3.19 and NodeJS 20.x
1 parent f467849 commit 58da8a7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/cypress.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ jobs:
1717

1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
21+
- name: Install NodeJS 20
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: 20
2125
- name: Cypress run
2226
uses: cypress-io/github-action@v5
2327
with:

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM rabbitmq:3-alpine AS rabbit
55

66
# Build our own image
7-
FROM alpine:3.18
7+
FROM alpine:3.19
88

99
LABEL maintainer="Justin Clift <[email protected]>"
1010

@@ -23,8 +23,8 @@ RUN addgroup -S rabbitmq && \
2323

2424
# Use a fast Australian mirror for the Alpine package repositories
2525
# Without doing this, building the image can take 2+ hours. :(
26-
RUN echo "https://mirror.aarnet.edu.au/pub/alpine/v3.18/main" > /etc/apk/repositories && \
27-
echo "https://mirror.aarnet.edu.au/pub/alpine/v3.18/community" >> /etc/apk/repositories
26+
RUN echo "https://mirror.aarnet.edu.au/pub/alpine/v3.19/main" > /etc/apk/repositories && \
27+
echo "https://mirror.aarnet.edu.au/pub/alpine/v3.19/community" >> /etc/apk/repositories
2828

2929
# Install Git, Go, Memcached, Minio, and PostgreSQL
3030
RUN apk update && \

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"mq:q": "docker exec -it dbhub-build rabbitmqctl list_queues"
5151
},
5252
"engines": {
53-
"node": "^18.14.1",
53+
"node": "^20.10.0",
5454
"yarn": "^1.22.19"
5555
},
5656
"repository": "https://github.com/sqlitebrowser/dbhub.io",

0 commit comments

Comments
 (0)