Skip to content

Commit

Permalink
oper: dockerfile para rodar os pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
b4hia authored Oct 10, 2024
1 parent ec55aac commit 554a392
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Dockerfile
FROM alpine:latest

# Update and install dependencies
RUN apk update && apk --no-cache add python3 py3-pip git bash && \
pip3 install requests

# Copy script to the container
COPY pull-request.py /pull-request.py

# Set default command
CMD ["python3", "/pull-request.py"]

0 comments on commit 554a392

Please sign in to comment.