This commit is contained in:
Jun-te Kim 2026-02-09 21:37:02 +00:00
parent e5cf3a426e
commit e3e024f70c

View file

@ -14,13 +14,6 @@ COPY backend/ backend/
# Copy the handler
COPY backend/postcode_splitter/main.py .
# Ensure __init__.py files exist for proper module importing
RUN touch backend/__init__.py
RUN touch backend/app/__init__.py
RUN touch backend/db/__init__.py
RUN touch backend/postcode_splitter/__init__.py
RUN touch utils/__init__.py
# Lambda handler
CMD ["main.handler"]