jekyll-to-hugo/Dockerfile
Denis-Cosmin NUTIU 174e157ab8 add Dockerfile
2023-06-03 15:13:36 +03:00

12 lines
No EOL
173 B
Docker

FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY . /app
ENTRYPOINT [ "python" ]
CMD [ "main.py" ]