speechcast / Dockerfile
jcockhren's picture
Added custom Dockerfile
3e09be7 verified
raw
history blame
No virus
156 Bytes
FROM python:3.10.12-slim-bookworm
RUN python -m pip install pipenv
COPY Pipfile .
COPY Pipfile.lock .
COPY *.py .
RUN pipenv install --system --deploy