mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
9 lines
240 B
Docker
9 lines
240 B
Docker
ARG AA_DOCKER_TAG
|
|
FROM $AA_DOCKER_TAG
|
|
|
|
RUN cd /home/allianceauth
|
|
COPY /conf/requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
RUN python $AUTH_HOME/myauth/manage.py collectstatic --noinput
|
|
RUN allianceauth update myauth
|