16 lines
240 B
Docker
16 lines
240 B
Docker
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"]
|