Skip to content

Commit 2f86d92

Browse files
committed
Fixing build errors
1 parent 7b97e39 commit 2f86d92

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
1414
supervisor && \
1515
BUILD_DEPS='build-essential python3-dev libxml2-dev libxslt-dev libssl-dev libffi-dev python-lxml zlib1g-dev git' && \
1616
apt-get install -y --no-install-recommends ${BUILD_DEPS} && \
17-
# pip3 install -U pip setuptools && \
17+
pip3 install -U setuptools wheel && \
1818
pip3 install -U uwsgi
1919

2020
RUN echo "daemon off;" >> /etc/nginx/nginx.conf

fabfile.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
1414

1515
config = {
16-
"name": "Python.ru dev deploy",
16+
"name": "Python.ru prod deploy",
1717

18-
"build_server": "dev.python.ru",
18+
"build_server": "new.python.ru",
1919
"repo_url": "git@github.com:moscowpython/python.ru.git",
2020
"app_path": "~/python.ru",
21-
"app_branch": "develop",
21+
"app_branch": "master",
2222

2323
"docker_image": "korneevm/pythonru",
24-
"image_type": "dev",
24+
"image_type": "prod",
2525
"image_version": "latest",
2626

27-
"deploy_server": "dev.python.ru",
27+
"deploy_server": "new.python.ru",
2828
"compose_path": "/opt/servers",
2929
"compose_block_name": "pythonru",
3030

@@ -33,7 +33,7 @@
3333

3434

3535
env.user = "deployer"
36-
env.hosts = ["dev.python.ru"]
36+
env.hosts = ["new.python.ru"]
3737
env.forward_agent = False
3838

3939
env.roledefs = {

0 commit comments

Comments
 (0)