mirror of https://github.com/OpenIPC/python-dvr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
235 B
17 lines
235 B
FROM python:3.10-slim-buster
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y \
|
|
git \
|
|
curl
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
EXPOSE 8888
|
|
|
|
CMD [ "python3", "./app.py"]
|
|
|