-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade the stack from Django 2.2 to 3.2 (#233)
* Upgrade the stack from Django 2.2 to 3.2 * Upgrade pip as well when installing Co-authored-by: Dimas Ciputra <[email protected]>
- Loading branch information
1 parent
ac26d15
commit f7a37c6
Showing
6 changed files
with
39 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ MAINTAINER Dimas Ciputra<[email protected]> | |
RUN apt-get clean all | ||
RUN apt-get update && apt-get install -y libsasl2-dev python-dev libldap2-dev libssl-dev | ||
ADD REQUIREMENTS.txt /REQUIREMENTS.txt | ||
RUN pip install -r /REQUIREMENTS.txt | ||
RUN pip install --upgrade pip && pip install -r /REQUIREMENTS.txt | ||
RUN pip install uwsgi | ||
|
||
# https://docs.docker.com/examples/running_ssh_service/ | ||
|
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