Skip to content

Commit 82f248e

Browse files
authored
Merge pull request #8 from silinternational/develop
Switch to GitHub Actions, upgrade postgres to 14
2 parents 5336b2a + b7cb71e commit 82f248e

7 files changed

+34
-29
lines changed

.dockerignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
*.aes
2-
codeship-services.yml
3-
codeship-steps.yml
42
dockercfg
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build and Publish
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build-and-publish:
8+
name: Build and Publish
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@v4
13+
14+
- name: Log in to Docker Hub
15+
uses: docker/login-action@v3
16+
with:
17+
username: ${{ secrets.DOCKERHUB_USERNAME }}
18+
password: ${{ secrets.DOCKERHUB_TOKEN }}
19+
20+
- name: Extract metadata (tags, labels) for Docker
21+
id: meta
22+
uses: docker/metadata-action@v5
23+
with:
24+
images: ${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
25+
26+
- name: Build and push Docker image
27+
uses: docker/build-push-action@v5
28+
with:
29+
context: .
30+
push: true
31+
tags: ${{ steps.meta.outputs.tags }}
32+
labels: ${{ steps.meta.outputs.labels }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/reposito
77
RUN apk update \
88
&& apk add --no-cache \
99
bash \
10-
postgresql12-client \
10+
postgresql14-client \
1111
py3-magic \
1212
py3-dateutil \
1313
s3cmd

codeship-services.yml

-5
This file was deleted.

codeship-steps.yml

-18
This file was deleted.

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ services:
1010
# POSTGRES_USER - superuser (default is 'postgres')
1111
# POSTGRES_DB - name of default database (default is value of POSTGRES_USER)
1212
db:
13-
image: postgres:11.15-alpine3.15
13+
image: postgres:14.11-alpine3.19
1414
volumes_from:
1515
- data
1616
ports:

dockercfg.encrypted

-2
This file was deleted.

0 commit comments

Comments
 (0)