Mohammed Sohail
ff7bb43e03
All checks were successful
continuous-integration/drone/push Build is passing
29 lines
729 B
Docker
29 lines
729 B
Docker
FROM python:3.9-alpine AS builder
|
|
|
|
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
|
|
ENV PIP_EXTRA_INDEX_URL=https://pip.grassrootseconomics.net
|
|
|
|
WORKDIR /home/root/app
|
|
|
|
RUN apk add --update build-base linux-headers libffi-dev openssl-dev
|
|
|
|
RUN python -m venv /opt/venv
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
ADD requirements.txt .
|
|
|
|
RUN --mount=type=cache,target=/root/.cache \
|
|
pip install -r requirements.txt
|
|
|
|
FROM python:3.9-alpine
|
|
WORKDIR /home/root/app
|
|
|
|
RUN apk add --no-cache gnupg
|
|
|
|
COPY . .
|
|
COPY ./.wellknown /var/lib/cic-auth-helper/pgp
|
|
|
|
COPY --from=builder /opt/venv /opt/venv
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
|
|
EXPOSE 80
|
|
CMD uwsgi --wsgi-file cic_auth_helper/runnable/server.py --http :80 --pyargv "-vv --forward-to http://cic-meta-server:80" |