-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.cli
36 lines (25 loc) · 1.11 KB
/
Dockerfile.cli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Utilisez une image Python officielle comme image de base
FROM python:3-slim
RUN apt update && apt upgrade -y
# Create a new user and group
RUN groupadd -r docker -g 1000 && useradd -r -g docker -u 1000 -m -d /home/docker docker
# Set the home directory ownership and permissions
RUN chown -R docker:docker /home/docker && chmod -R 755 /home/docker
# Add directoty to the PATH
ENV PATH="/home/docker/.local/bin:${PATH}"
# Switch to the new user
USER docker
# create application's directory
RUN mkdir /home/docker/app
# Définissez le répertoire de travail
WORKDIR /home/docker/app
# Copiez les fichiers de configuration et d'installation du projet dans le répertoire de travail
COPY requirements.in .
# Installez les dépendances Python nécessaires
RUN pip install --upgrade pip
RUN pip install pip-tools && pip-compile --output-file requirements.txt requirements.in
RUN pip install --no-cache-dir -r requirements.txt
# Copiez le reste des fichiers du projet dans le répertoire de travail
COPY . .
# Définissez la commande pour exécuter votre application
ENTRYPOINT python cli_tools.py updatenotion ./settings.ini