2022-03-15 14:04:03 +00:00
|
|
|
FROM python:3.9
|
|
|
|
|
2022-05-31 09:49:58 +00:00
|
|
|
# TODO manually compile ffmpeg, to prevent useless deps and decrease build size
|
|
|
|
# for that, see here: https://stackoverflow.com/questions/53944487/how-to-install-ffmpeg-in-a-docker-container
|
|
|
|
# pin ffmpeg version to prevent issues down the road
|
|
|
|
RUN apt-get update && apt-get -y install ffmpeg=7:4.3.*
|
|
|
|
|
2022-03-15 14:04:03 +00:00
|
|
|
RUN mkdir /app
|
|
|
|
COPY pyproject.toml /app
|
|
|
|
COPY poetry.lock /app
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
ENV PYTHONPATH=${PYTHONPATH}:${PWD}
|
|
|
|
RUN pip3 install poetry
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
RUN poetry install --no-dev
|
|
|
|
|
2022-05-31 09:49:58 +00:00
|
|
|
# copy files as late as possible, these change the most
|
|
|
|
# forcing a rerun of all layers
|
|
|
|
COPY /app /app
|
|
|
|
|
|
|
|
|
2022-03-15 14:04:03 +00:00
|
|
|
ENTRYPOINT poetry run python webserver.py --storage /files
|