set up initial container
This commit is contained in:
parent
8d4bfc6e7e
commit
b72d422746
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
||||
pandas
|
1
src/test.py
Normal file
1
src/test.py
Normal file
@ -0,0 +1 @@
|
||||
print("This is working")
|
Loading…
x
Reference in New Issue
Block a user