added postcode splittelr handler code

This commit is contained in:
Jun-te Kim 2026-02-09 11:35:00 +00:00
parent 18396d9494
commit 47fce5f3f8
3 changed files with 10 additions and 2 deletions

View file

@ -23,7 +23,8 @@
"corentinartaud.pdfpreview",
"ms-python.vscode-python-envs",
"ms-python.black-formatter",
"GrapeCity.gc-excelviewer"
"GrapeCity.gc-excelviewer",
"jakobhoeg.vscode-pokemon"
],
"settings": {
"files.defaultWorkspace": "/workspaces/model",

View file

@ -23,7 +23,8 @@
"ms-python.vscode-python-envs",
"ms-python.black-formatter",
"waderyan.gitblame",
"GrapeCity.gc-excelviewer"
"GrapeCity.gc-excelviewer",
"jakobhoeg.vscode-pokemon"
],
"settings": {
"files.defaultWorkspace": "/workspaces/model",

View file

@ -3,6 +3,12 @@ FROM public.ecr.aws/lambda/python:3.10
# Set working directory (Lambda task root)
WORKDIR /var/task
COPY backend/postcode_splitter/handler/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY utils/ utils/
COPY backend/postcode_splitter/main.py .
# -----------------------------
# Lambda handler
# -----------------------------