obs-portal/api/Dockerfile
2021-11-22 09:50:33 +01:00

14 lines
215 B
Docker

FROM python:3.9.7-bullseye
WORKDIR /opt/obs/api
ADD scripts /opt/obs/scripts
RUN pip install -e /opt/obs/scripts
ADD requirements.txt setup.py obs /opt/obs/api/
RUN pip install -e .
EXPOSE 8000
CMD ["obs-api"]