commandr-api-local / Dockerfile
muryshev's picture
Update Dockerfile
db8aa58 verified
raw
history blame
251 Bytes
FROM python:3.10-buster
WORKDIR /app/commandr-api-local
RUN chown -R user:user /app/commandr-api-local
COPY --chown=user:user . /app/commandr-api-local
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
CMD ["python", "app.py"]