diff --git a/backend/main.py b/backend/main.py index 0f6b923..0b227bc 100644 --- a/backend/main.py +++ b/backend/main.py @@ -13,7 +13,6 @@ app = FastAPI() app.add_middleware( CORSMiddleware, allow_origins=["*"], # בהמשך תוכל לצמצם לכתובת הפרונטאנד - allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 016d5b1..53f28ec 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -27,4 +27,4 @@ RUN dos2unix /entrypoint.sh && chmod +x /entrypoint.sh EXPOSE 80 ENTRYPOINT ["/entrypoint.sh"] -CMD ["nginx", "-g", "daemon off;"] +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file