Skip to content

Commit 4eccaaf

Browse files
committed
trad: translate french to english
1 parent 87510de commit 4eccaaf

32 files changed

+600
-758
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ Thumbs.db
7777
# Project specific
7878
logs/
7979
*.log
80-
config/local.yaml
80+
config/*
81+
!config/Dockerfile.sample
8182
.secrets
8283
runners_config.yaml

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Dockerfile pour GitHub Runner Manager
1+
# Dockerfile for GitHub Runner Manager
22
FROM python:3.13-slim
33

44
WORKDIR /app
55

66

7-
# Installer les dépendances système nécessaires et le client Docker CLI
7+
# Install necessary system dependencies
88
RUN apt-get update && apt-get install -y --no-install-recommends \
99
gcc \
1010
git \
@@ -13,14 +13,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1313
supervisor \
1414
&& rm -rf /var/lib/apt/lists/*
1515

16-
# Copier les fichiers de l'application
16+
# Copy application files
1717
COPY pyproject.toml poetry.lock ./
1818
COPY src ./src
1919
COPY main.py ./
2020
COPY README.md ./
2121
COPY infra/docker/supervisord.conf ./
2222

23-
# Installer Poetry et les dépendances Python
23+
# Install Poetry and Python dependencies
2424
RUN pip install poetry && poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi
2525

2626
COPY infra/docker/entrypoint.sh /entrypoint.sh

0 commit comments

Comments
 (0)