mirror of
https://gitlab.com/psono/psono-server
synced 2025-04-18 09:44:01 +03:00
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
# PSONO Dockerfile for Alpine
|
|
FROM psono-docker.jfrog.io/python:3.11.10-alpine3.20
|
|
|
|
LABEL maintainer="Sascha Pfeiffer <sascha.pfeiffer@psono.com>"
|
|
COPY psono/static/email /var/www/html/static/email
|
|
COPY . /root/
|
|
ENV PYTHONUNBUFFERED True
|
|
WORKDIR /root
|
|
|
|
# Buildkit should populate this on build with e.g. "arm64" or "amd64"
|
|
ARG TARGETARCH
|
|
|
|
RUN apk upgrade && \
|
|
mkdir -p /root/.pip && \
|
|
echo '[global]' >> /root/.pip/pip.conf && \
|
|
echo 'index-url = https://psono.jfrog.io/psono/api/pypi/pypi/simple' >> /root/.pip/pip.conf && \
|
|
apk add \
|
|
gettext \
|
|
ca-certificates \
|
|
curl \
|
|
postgresql-dev && \
|
|
apk add --virtual .build-deps \
|
|
build-base \
|
|
openssl-dev \
|
|
libffi-dev \
|
|
linux-headers && \
|
|
pip3 install --upgrade setuptools pip && \
|
|
pip3 install -r requirements.txt && \
|
|
if [ "$TARGETARCH" = "amd64" ]; then \
|
|
pip3 install -r requirements-amd64.txt ; \
|
|
fi; \
|
|
mkdir -p /root/.psono_server && \
|
|
cp /root/configs/mainconfig/settings.yaml /root/.psono_server/settings.yaml && \
|
|
sed -i /root/.psono_server/settings.yaml \
|
|
-e "s/YourPostgresDatabase/postgres/g " \
|
|
-e "s/YourPostgresUser/postgres/g" \
|
|
-e "s/YourPostgresHost/postgres/g" \
|
|
-e "s/YourPostgresPort/5432/g" \
|
|
-e "s,path/to/psono-server,root,g" && \
|
|
apk del .build-deps && \
|
|
rm -Rf \
|
|
/root/.cache \
|
|
/var/cache/apk/*
|
|
|
|
|
|
HEALTHCHECK --interval=2m --timeout=3s \
|
|
CMD curl -f http://localhost/healthcheck/ || exit 1
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["/bin/sh", "/root/configs/docker/cmd.sh"]
|