jekyll-to-hugo/docker/Dockerfile

12 lines
184 B
Text
Raw Normal View History

2023-06-03 12:13:36 +00:00
FROM python:3.10-slim
WORKDIR /app
2023-06-04 16:27:29 +00:00
COPY ../requirements.txt /app/requirements.txt
2023-06-03 12:13:36 +00:00
RUN pip install -r requirements.txt
2023-06-04 16:27:29 +00:00
COPY .. /app
2023-06-03 12:13:36 +00:00
ENTRYPOINT [ "python" ]
2023-06-05 10:52:29 +00:00
CMD [ "-m", "app.main" ]