Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dalbothek committed Sep 7, 2023
1 parent c956de7 commit 14e0214
Show file tree
Hide file tree
Showing 4 changed files with 413 additions and 614 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
python-version: 3.9

- name: Setup Poetry
uses: Gr1N/setup-poetry@v4
uses: Gr1N/setup-poetry@v8

- name: Install dependencies
run: poetry install
Expand Down Expand Up @@ -71,11 +71,10 @@ jobs:
strategy:
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -86,7 +85,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Setup Poetry
uses: Gr1N/setup-poetry@v4
uses: Gr1N/setup-poetry@v8

- name: Install dependencies
run: poetry install
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.10 AS build
FROM python:3.11 AS build

WORKDIR /opt/certbot/plugin

# Install poetry
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - && \
ln -s ~/.poetry/bin/poetry /usr/bin/ && \
poetry config virtualenvs.create false
RUN curl -sSL https://install.python-poetry.org | python - && \
ln -s ~/.local/bin/poetry /usr/bin/ && \
poetry config virtualenvs.create false

# Build plugin
COPY [".", "."]
Expand Down
Loading

0 comments on commit 14e0214

Please sign in to comment.