* lifecycle: move s3 backup settings to s3 name * providers/oauth2: fix for alerting for missing certificatekeypair * lifecycle: add backup commands see #252 * lifecycle: install postgres-client for 11 and 12 * root: migrate to DBBACKUP_STORAGE_OPTIONS, add region setting * lifecycle: auto-clean last backups * helm: add s3 region parameter, add cronjob for backups * docs: add backup docs * root: remove backup scheduled task for now
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.8-slim-buster as locker
 | 
						|
 | 
						|
COPY ./Pipfile /app/
 | 
						|
COPY ./Pipfile.lock /app/
 | 
						|
 | 
						|
WORKDIR /app/
 | 
						|
 | 
						|
RUN pip install pipenv && \
 | 
						|
    pipenv lock -r > requirements.txt && \
 | 
						|
    pipenv lock -rd > requirements-dev.txt
 | 
						|
 | 
						|
FROM python:3.8-slim-buster
 | 
						|
 | 
						|
WORKDIR /
 | 
						|
COPY --from=locker /app/requirements.txt /
 | 
						|
COPY --from=locker /app/requirements-dev.txt /
 | 
						|
 | 
						|
RUN apt-get update && \
 | 
						|
    apt-get install -y --no-install-recommends curl ca-certificates gnupg && \
 | 
						|
    curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
 | 
						|
    echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
 | 
						|
    apt-get update && \
 | 
						|
    apt-get install -y --no-install-recommends postgresql-client-12 postgresql-client-11 build-essential && \
 | 
						|
    apt-get clean && \
 | 
						|
    pip install -r /requirements.txt --no-cache-dir && \
 | 
						|
    apt-get remove --purge -y build-essential && \
 | 
						|
    apt-get autoremove --purge -y && \
 | 
						|
    adduser --system --no-create-home --uid 1000 --group --home /passbook passbook
 | 
						|
 | 
						|
COPY ./passbook/ /passbook
 | 
						|
COPY ./manage.py /
 | 
						|
COPY ./lifecycle/ /lifecycle
 | 
						|
 | 
						|
USER passbook
 | 
						|
 | 
						|
ENTRYPOINT [ "/lifecycle/bootstrap.sh" ]
 |