Spaces:
Running
Running
theonlykid
commited on
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -5,8 +5,10 @@ WORKDIR /code
|
|
5 |
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
|
|
|
|
|
8 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
9 |
|
10 |
COPY . .
|
11 |
|
12 |
-
CMD ["
|
|
|
5 |
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
|
8 |
+
COPY ./kobold /code/kobold
|
9 |
+
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
|
12 |
COPY . .
|
13 |
|
14 |
+
CMD ["./kobold --help"]
|