This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
forked from lyft/confidant
-
Notifications
You must be signed in to change notification settings - Fork 5
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 #7 from apakulov-stripe/update-to-5.2.0
Update to 5.2.0
- Loading branch information
Showing
30 changed files
with
257 additions
and
850 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:trusty | ||
FROM ubuntu:bionic | ||
LABEL maintainer="[email protected]" | ||
|
||
RUN apt-get update \ | ||
|
@@ -11,24 +11,21 @@ RUN apt-get update \ | |
make ruby-dev nodejs git-core \ | ||
# For backend | ||
gcc pkg-config \ | ||
python-dev python-virtualenv \ | ||
python3-dev virtualenv \ | ||
libffi-dev libxml2-dev libxmlsec1-dev \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
COPY ./piptools_requirements.txt /srv/confidant/piptools_requirements.txt | ||
COPY ./requirements.txt /srv/confidant/requirements.txt | ||
COPY ./package.json /srv/confidant/package.json | ||
COPY ./bower.json /srv/confidant/bower.json | ||
COPY package.json bower.json piptools_requirements*.txt requirements*.txt /srv/confidant/ | ||
|
||
WORKDIR /srv/confidant | ||
|
||
ENV PATH=/venv/bin:$PATH | ||
RUN virtualenv /venv && \ | ||
pip install --upgrade pip && \ | ||
pip install -r piptools_requirements.txt && \ | ||
pip install -r requirements.txt | ||
RUN virtualenv /venv -ppython3 && \ | ||
pip install --no-cache -r piptools_requirements3.txt && \ | ||
pip install --no-cache -r requirements3.txt | ||
|
||
RUN gem install rb-inotify -v 0.9.10 && \ | ||
RUN gem install ffi -v 1.10.0 && \ | ||
gem install rb-inotify -v 0.9.10 && \ | ||
gem install compass -v 1.0.3 && \ | ||
npm install grunt-cli && \ | ||
npm install | ||
|
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.