iron-blogger/Dockerfile

9 lines
155 B
Docker
Raw Normal View History

2023-12-28 15:08:01 +00:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2023-12-28 22:00:34 +00:00
CMD [ "python", "./blogbot.py" ]