Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Dockerfile 338 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
  1. FROM public.ecr.aws/lambda/python:3.10
  2. COPY requirements.txt ${LAMBDA_TASK_ROOT}/
  3. RUN python3 -m pip install -r requirements.txt --target ${LAMBDA_TASK_ROOT}
  4. COPY ./firealarm_ml/deploy.py ${LAMBDA_TASK_ROOT}/
  5. COPY ./firealarm_ml/epa_seq2seq_model.py ${LAMBDA_TASK_ROOT}/
  6. COPY best_model.pt ${LAMBDA_TASK_ROOT}/
  7. CMD [ "deploy.predict"]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...