diff --git a/backend/Dockerfile b/backend/Dockerfile index 4731d51..3441bf0 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -22,7 +22,7 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt COPY ./petkinApp /app/petkinApp COPY ./model.pt /app/model.pt COPY ./static /app/static -COPY .env /app/.env +# COPY .env /app/.env # 포트 노출 @@ -32,4 +32,4 @@ EXPOSE 8080 CMD ["gunicorn", "petkinApp.main:app", "-k", "uvicorn.workers.UvicornWorker", "--bind", "0.0.0.0:8080", "-w", "1"] HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \ - CMD curl -f http://localhost:8080/health || exit 1 \ No newline at end of file + CMD curl -f http://localhost:8080/health || exit 1