Skip to content

Commit

Permalink
feat: install dependencies from requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Dec 10, 2023
1 parent 2610411 commit d16f2c6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ FROM python:3.10-alpine
# Define your working directory
WORKDIR /

# Add your handler
# Add your src
ADD src/start.sh src/rp_handler.py requirements.txt ./
RUN chmod +x /start.sh

# Start the container
# Intall dependencies
RUN pip install -r requirements.txt

# Run the start script
CMD /start.sh

0 comments on commit d16f2c6

Please sign in to comment.