summit / Dockerfile
kkastr
rename files. added prelims for deployment on aws (pending permission fix)
1d197a9
raw
history blame
373 Bytes
# Dockerfile
FROM public.ecr.aws/docker/library/python:3.9.16-slim-buster
COPY --from=public.ecr.aws/awsguru/aws-lambda-adapter:0.6.0 /lambda-adapter /opt/extensions/lambda-adapter
WORKDIR /var/task
COPY requirements.txt ./requirements.txt
RUN python -m pip install -r requirements.txt
COPY app.py ./
COPY scraper.py ./
COPY model/ ./model/
CMD ["python3", "app.py"]