first commit
This commit is contained in:
17
gmail-to-tryton/Dockerfile
Normal file
17
gmail-to-tryton/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Installer dépendances
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copier scripts
|
||||
COPY run.py .
|
||||
COPY entrypoint.sh .
|
||||
|
||||
# Rendre le script exécutable
|
||||
RUN chmod +x entrypoint.sh
|
||||
|
||||
# Entrypoint
|
||||
ENTRYPOINT ["/app/entrypoint.sh"]
|
||||
Reference in New Issue
Block a user