chore: .env 파일 복사
Some checks failed
Docker Build and Deploy / build-and-push (push) Successful in 2m44s
Docker Build and Deploy / deploy (push) Failing after 6s

This commit is contained in:
Ayuriel 2025-03-31 17:57:04 +09:00
parent 176e5df561
commit b8453f1825
2 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ __pycache__/
*.py[cod]
*$py.class
*.so
.env
.venv
env/
venv/

View File

@ -7,7 +7,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY ./.env /app/
COPY .env /app/
COPY src/ /app/src/
COPY README.md /app/