Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
soodoku committed Sep 5, 2023
1 parent 894bc5b commit 5b9c701
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM python:3.11-slim

RUN mkdir /usr/src/naamkaran

WORKDIR /naamkaran

COPY ./requirements.txt .

RUN pip install -r requirements.txt
RUN --mount=type=cache,target=/root/.cache \
pip install -r requirements.txt
RUN pip install gradio

ENV PYTHONUNBUFFERED 1

COPY . .

CMD ["python", "gradio_app.py"]

0 comments on commit 5b9c701

Please sign in to comment.