Compare commits

..

No commits in common. "b2209ae458d725ab7ae792d6471637e285fe0f80" and "fd19216b0d240fb71e6a24ee6c1cb8ee0d8e650c" have entirely different histories.

3 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
ARG UID=1000
RUN groupadd -g ${UID} -r appuser && useradd -u ${UID} -r -g appuser -m appuser
RUN groupadd -g ${UID} -r appuser && useradd -u ${UID} -r -g appuser appuser
COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin

View File

@ -14,7 +14,7 @@ SECURE_HSTS_SECONDS = 31536000 # 1 year
SECURE_HSTS_INCLUDE_SUBDOMAINS = True
SECURE_HSTS_PRELOAD = True
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS', default=[]) + ['localhost', '127.0.0.1']
ALLOWED_HOSTS = env.list('ALLOWED_HOSTS')
DATABASES = {
'default': env.db('DATABASE_URL')

View File

@ -1,8 +1,8 @@
#!/bin/bash
set -e
VERSION=${1:-latest}
IMAGE="gitea.tenhal.sa/marwan/hh:${VERSION}"
VERSION=${1:-staging}
IMAGE="10.10.1.132:3000/marwan/hh:${VERSION}"
echo "========================================"
echo " PX360 Staging Deploy"