changed container image

This commit is contained in:
Brian Bjarke Jensen
2025-10-27 00:08:24 +01:00
parent b007e6183b
commit 09092eafbb
+6 -3
View File
@@ -6,14 +6,17 @@ on:
jobs: jobs:
create_db_and_user: create_db_and_user:
# Use a standard Linux runner environment
runs-on: ubuntu-latest runs-on: ubuntu-latest
# NOTE: The job will run inside a Docker image with the psql client.
container: container:
image: postgres:15-alpine image: node:20-alpine
steps: steps:
- name: Install PostgreSQL Client
run: |
# Install psql client on Alpine Linux
apk add --no-cache postgresql-client
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4