42 lines
1.2 KiB
Docker
42 lines
1.2 KiB
Docker
FROM python:3.11-slim
|
|
|
|
# declaration of service variables environment
|
|
ENV USER_SERVICE_NAME=${USER_SERVICE_NAME}
|
|
ENV DJANGO_SUPERUSER_USERNAME=${DJANGO_SUPERUSER_USERNAME}
|
|
ENV DJANGO_SUPERUSER_EMAIL=${DJANGO_SUPERUSER_EMAIL}
|
|
ENV DJANGO_SUPERUSER_PASSWORD=${DJANGO_SUPERUSER_PASSWORD}
|
|
ARG USER_SERVICE_NAME
|
|
ARG DJANGO_SUPERUSER_USERNAME
|
|
ARG DJANGO_SUPERUSER_EMAIL
|
|
ARG DJANGO_SUPERUSER_PASSWORD
|
|
|
|
COPY ./user_auth_system /home/archive/${USER_SERVICE_NAME}
|
|
|
|
# declaration of environment variables for python
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1
|
|
|
|
RUN apt-get clean \
|
|
&& apt-get update \
|
|
&& apt-get install -y netcat-openbsd \
|
|
&& mkdir -p /home/archive
|
|
|
|
WORKDIR /home/archive
|
|
|
|
# installation of dependencies
|
|
COPY ./conf/requirements.txt .
|
|
RUN pip3 install --no-cache-dir -r requirements.txt \
|
|
&& mkdir depedencies && mv requirements.txt depedencies
|
|
|
|
RUN mkdir -p logs
|
|
|
|
# copy and execute the initialization script
|
|
COPY ./tools/init.sh /home/archive/init.sh
|
|
RUN chmod +x /home/archive/init.sh
|
|
|
|
# set the final working directory
|
|
WORKDIR /home/archive/${USER_SERVICE_NAME}
|
|
|
|
# Command for running the application
|
|
CMD ["/bin/bash", "/home/archive/init.sh"]
|