Skip to content

Commit e3a5aac

Browse files
authored
perf(docker): bump python from 3.8 to 3.11 (#21)
* ci(github): remove layer caching * build(docker): bump python from 3.8 to 3.11
1 parent cff2379 commit e3a5aac

3 files changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/builds.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,4 @@ jobs:
1515
os: [ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: satackey/action-docker-layer-caching@v0.0.11
19-
# Ignore the failure of a step and avoid terminating the job.
20-
continue-on-error: true
21-
- name: Build docker
22-
run: docker build . -t header-validator:latest
18+
- run: docker build . -t header-validator:latest

.github/workflows/tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ jobs:
1515
os: [ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: satackey/action-docker-layer-caching@v0.0.11
19-
# Ignore the failure of a step and avoid terminating the job.
20-
continue-on-error: true
2118
- run: docker build . -t header-validator:latest
2219
- name: Run action
2320
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.13-alpine
1+
FROM python:3.11-alpine
22

33
ENV PYTHONDONTWRITEBYTECODE 1
44
ENV PYTHONUNBUFFERED 1

0 commit comments

Comments
 (0)