30 lines
730 B
Docker
30 lines
730 B
Docker
# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
FROM python:3.11-slim
|
|
|
|
COPY Pipfile* /app/
|
|
WORKDIR /app/
|
|
RUN apt update && \
|
|
apt install -y jq gcc libpq5 libpq-dev libmagic1 && \
|
|
jq -r '.default | to_entries[] | .key + .value.version' Pipfile.lock > requirements.txt && \
|
|
sed -i "s/psycopg2-binary/psycopg2/g" requirements.txt
|
|
|
|
RUN pip install -r requirements.txt && \
|
|
apt remove -y jq gcc
|
|
|
|
COPY classquiz/ /app/classquiz/
|
|
COPY image_cleanup.py /app/image_cleanup.py
|
|
COPY alembic.ini /app/
|
|
COPY migrations/ /app/migrations/
|
|
COPY *start.sh /app/
|
|
COPY gunicorn_conf.py /app/
|
|
|
|
|
|
EXPOSE 80
|
|
ENV PYTHONPATH=/app
|
|
RUN chmod +x start.sh
|
|
ENV APP_MODULE=classquiz:app
|
|
CMD ["./start.sh"]
|