Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
diranged committed Oct 21, 2024
1 parent f56886c commit 766d25f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.12-alpine3.19

RUN apk add nginx jq openssl libpq-dev build-base
RUN apk add nginx jq openssl libpq-dev build-base bash

# Generate SSL certs.
RUN mkdir -p /app/ssl && cd /app/ssl && \
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ run: stop docker_build
--hostname $(GOGO_HOST) \
--publish 80:80 \
--publish 443:443 \
--publish 5000:5000 \
--env CONFIG=DevelopmentConfig \
--env SKIP_AUTH=$(SKIP_AUTH) \
$(AUTH_HEADER_NAME_ENV) \
Expand Down
2 changes: 1 addition & 1 deletion resources/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if [ -z "$AUTH_HEADER_NAME" ] && [ "$SKIP_AUTH" == "false" ]; then
fi
fi

test -z "${DISABLE_NGINX}" && /usr/sbin/nginx -c /app/resources/nginx.conf -p /app/ &
test -z "${DISABLE_NGINX}" && /usr/sbin/nginx -c /app/resources/nginx.conf &

export APP_SETTINGS="config.${CONFIG}"

Expand Down
8 changes: 4 additions & 4 deletions resources/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ certifi==2017.7.27.1
chardet==3.0.4
click==6.7
docutils==0.14
Flask==1.0
Flask==1.1.2
Flask-SQLAlchemy==2.2
google-api-python-client==1.6.3
httplib2==0.19.0
Expand All @@ -13,7 +13,7 @@ itsdangerous==0.24
Jinja2==2.11.3
jmespath==0.9.3
MarkupSafe==1.1.1
oauth2client==4.1.2
oauth2client==4.1.3
psycopg2==2.9.10
pyasn1==0.3.4
pyasn1-modules==0.1.4
Expand All @@ -22,8 +22,8 @@ python-dateutil==2.6.1
requests==2.21.0
rsa==4.7
s3transfer==0.1.11
six==1.10.0
SQLAlchemy==1.1.14
six==1.16.0
SQLAlchemy==1.4.54
uritemplate==3.0.0
urllib3==1.24.3
Werkzeug==0.15.3

0 comments on commit 766d25f

Please sign in to comment.