mirror of
https://github.com/88lex/safire.git
synced 2025-02-23 21:34:39 +08:00
17 lines
340 B
Docker
17 lines
340 B
Docker
FROM python:3.8.5-alpine3.12
|
|
|
|
ENV MAX_PROJECTS=100
|
|
ENV SAS_PER_PROJECT=100
|
|
ENV EMAIL_PREFIX=svcacc
|
|
ENV PROJECT_PREFIX=UniqPrefix
|
|
ENV JSON_PREFIX=svcacc
|
|
|
|
COPY ./requirements.txt /opt/requirements.txt
|
|
WORKDIR /opt
|
|
|
|
RUN apk --no-cache \
|
|
pip install /opt/requireme
|
|
|
|
RUN apk --no-cache add \
|
|
python3.8 &&\
|
|
pip install /opt/requireme
|