Spaces:
Paused
Paused
File size: 251 Bytes
1e2a35a 542774a 1e2a35a db8aa58 1e2a35a a375e77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"]
|