commit ac12f67b1543c9dc3473ab3560065b0c35ad8c41 Author: Ramón Vásquez Date: Tue Sep 16 13:34:36 2025 -0300 First commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4c81385 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3 +RUN apt-get update && apt-get install -y python3-pip +RUN pip3 install --upgrade pip +WORKDIR /app +COPY requirements.txt . +COPY /app/app.py /app +RUN pip3 install -r requirements.txt +COPY . . +CMD ["python3", "app.py"] + diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..fd6d9b9 --- /dev/null +++ b/app/app.py @@ -0,0 +1,6 @@ +def main(): + print('I am the main print. Hi, dude!') + +if __name__ == '__main__': + main() + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d2043db --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +copier +invoke +numpy +pandas +psycopg +