Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM python:3.11
|
| 2 |
RUN apt update
|
| 3 |
RUN apt install git
|
| 4 |
-
RUN git clone https://github.com/
|
| 5 |
WORKDIR "/app"
|
| 6 |
RUN mkdir /.cache && chmod 777 /.cache
|
| 7 |
RUN pip install -r requirements.txt
|
|
|
|
| 1 |
FROM python:3.11
|
| 2 |
RUN apt update
|
| 3 |
RUN apt install git
|
| 4 |
+
RUN git clone https://github.com/renqabs/hfa.git /app
|
| 5 |
WORKDIR "/app"
|
| 6 |
RUN mkdir /.cache && chmod 777 /.cache
|
| 7 |
RUN pip install -r requirements.txt
|