Skip to content

Commit

Permalink
Merge pull request #25 from semnil/ffix
Browse files Browse the repository at this point in the history
Fix package installation method
  • Loading branch information
semnil authored Aug 18, 2024
2 parents 2b587d1 + 24dea58 commit 2a93d6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
example:
runs-on: ubuntu-latest
container:
image: semnil/tfdiagrams:0.3.0
image: semnil/tfdiagrams:0.3.1

steps:
- uses: actions/create-github-app-token@v1
Expand Down
11 changes: 1 addition & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@ RUN apk update && apk add \
python3-dev \
py3-pip

WORKDIR /app
COPY tfdiagrams/ ./tfdiagrams/
COPY poetry.lock .
COPY pyproject.toml .

RUN pip3 install poetry --break-system-packages \
&& pip3 install packaging==24.1 --break-system-packages \
&& poetry config virtualenvs.create false --local

RUN /usr/bin/poetry install
RUN pip3 install tfdiagrams==0.3.0 --break-system-packages

ENTRYPOINT []
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tfdiagrams"
version = "0.3.0"
version = "0.3.1"
description = ""
authors = ["Tetsuya Shinone <info@semnil.com>"]

Expand Down

0 comments on commit 2a93d6f

Please sign in to comment.