speechcast / Dockerfile
jcockhren's picture
fixup entrypoint
f02839a verified
raw history blame
No virus
182 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
CMD ["python", "app.py"]