-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de371c4
commit 4381e29
Showing
27 changed files
with
167 additions
and
405 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 6.6.1 | ||
|
||
* Upgrade confidant to python 3.10.14 | ||
|
||
## 6.5.8 | ||
|
||
* Migrated to docker compose v2 | ||
|
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,19 @@ | ||
FROM ubuntu:bionic | ||
FROM ubuntu:jammy | ||
LABEL maintainer="[email protected]" | ||
|
||
WORKDIR /srv/confidant | ||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
curl ca-certificates \ | ||
&& /usr/bin/curl -sL --fail https://deb.nodesource.com/setup_10.x | bash - | ||
&& /usr/bin/curl -sL --fail https://deb.nodesource.com/setup_20.x | bash - | ||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | ||
# For frontend | ||
make nodejs git-core \ | ||
# For backend | ||
gcc pkg-config \ | ||
python3.8-dev virtualenv \ | ||
python3.10-dev virtualenv \ | ||
libffi-dev libxml2-dev libxmlsec1-dev \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
|
@@ -22,18 +22,17 @@ COPY package.json /srv/confidant/ | |
RUN npm install grunt-cli && \ | ||
npm install | ||
|
||
COPY piptools_requirements.txt piptools_requirements3.txt requirements3.txt /srv/confidant/ | ||
COPY piptools_requirements.txt requirements.txt /srv/confidant/ | ||
|
||
ENV PATH=/venv/bin:$PATH | ||
RUN virtualenv /venv --python=/usr/bin/python3.8 && \ | ||
RUN virtualenv /venv --python=/usr/bin/python3.10 && \ | ||
pip install --no-cache -r piptools_requirements.txt && \ | ||
pip install --no-cache -r piptools_requirements3.txt && \ | ||
pip install --no-cache -r requirements3.txt | ||
pip install --no-cache -r requirements.txt | ||
|
||
COPY .jshintrc Gruntfile.js /srv/confidant/ | ||
COPY confidant/public /srv/confidant/confidant/public | ||
|
||
RUN node_modules/grunt-cli/bin/grunt build --force | ||
RUN node_modules/grunt-cli/bin/grunt build | ||
|
||
COPY . /srv/confidant | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.5.8 | ||
6.6.1 |
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
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.