Skip to content

Commit

Permalink
WIP: Try python base image again
Browse files Browse the repository at this point in the history
  • Loading branch information
cortadocodes committed Oct 14, 2024
1 parent bd85ac0 commit ced1521
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
FROM octue/check-semantic-version:1.0.0.beta-9
FROM python:3.10.7-slim

RUN apt-get update && apt-get install -y --no-install-recommends curl git jq && rm -rf /var/lib/apt/lists/*

RUN curl -L https://github.com/idc101/git-mkver/releases/download/v1.2.1/git-mkver-linux-amd64-1.2.1.tar.gz \
| tar xvz \
&& mv git-mkver /usr/local/bin

# Install poetry.
ENV POETRY_HOME=/root/.poetry
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
default: 'major'
runs:
using: 'docker'
image: 'docker://octue/check-semantic-version:1.0.5.beta-8'
image: 'docker://octue/check-semantic-version:1.0.5.beta-11'
args:
- ${{ inputs.path }}
- ${{ inputs.breaking_change_indicated_by }}

0 comments on commit ced1521

Please sign in to comment.