-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1139 from skalenetwork/develop
2.9.0 beta
- Loading branch information
Showing
14 changed files
with
583 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
FROM python:3.11-bookworm | ||
|
||
RUN apt-get update && apt-get install -y wget git libxslt-dev iptables kmod swig | ||
RUN apt-get update && apt-get install -y wget git libxslt-dev iptables kmod swig nftables python3-nftables | ||
|
||
RUN mkdir /usr/src/admin | ||
WORKDIR /usr/src/admin | ||
|
||
COPY requirements.txt ./ | ||
COPY requirements-dev.txt ./ | ||
|
||
RUN pip3 install --no-cache-dir -r requirements.txt | ||
RUN pip3 install -r requirements.txt | ||
|
||
COPY . . | ||
|
||
RUN update-alternatives --set iptables /usr/sbin/iptables-legacy && \ | ||
update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy | ||
|
||
ENV PYTHONPATH="/usr/src/admin" | ||
ENV PYTHONPATH="/usr/src/admin":/usr/lib/python3/dist-packages/ | ||
|
||
ENV COLUMNS=80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.8.0 | ||
2.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.