Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.git/
*.png
local_webscrapping.py
Procfile
webscrapping_test1.py
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# base image
FROM python:3.10-alpine

# sets the working directory inside the container
WORKDIR /rubot

# copies required files from the host machine into the container
COPY ./requirements.txt .
COPY ./Twitter-Bot/rubot.py .

# runs the command to install dependencies
RUN pip install -r requirements.txt

# command that will run when the container starts
CMD [ "python", "./rubot.py" ]
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# RuBot

Applying Web-Scraping to retrieve information from UFES's cafeteria menu, facilitating the acess to such information.