11 lines
186 B
Docker
11 lines
186 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY lambda_function.py invoke.py seed.py ./
|
|
|
|
CMD ["sleep", "infinity"]
|