19 lines
308 B
Docker
19 lines
308 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.10-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
libffi-dev \
|
|
libssl-dev
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY seshsecretary.py seshsecretary.py
|
|
|
|
CMD ["python", "seshsecretary.py"]
|