blob: 33c14fb0fc9c552858402653e1be693fef3d6fdc (
plain) (
tree)
|
|
FROM python:3.10
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN apt-get update && apt-get install exiftool && pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./bot.py" ]
|