set up initial container

This commit is contained in:
Andrew Ridgway 2024-11-07 17:42:47 +10:00
parent 8d4bfc6e7e
commit b72d422746
3 changed files with 17 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM python:slim
WORKDIR /blog_creator
COPY requirements.txt requirements.txt
ADD src/ /blog_creator
RUN pip install -r requirements.txt
#RUN apt-get update && apt-get install -y make
#RUN make html
ENTRYPOINT ["python", "test.py"]

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pandas

1
src/test.py Normal file
View File

@ -0,0 +1 @@
print("This is working")