Spaces:
Sleeping
Sleeping
update
Browse files- .gitignore +1 -0
- Dockerfile +1 -1
.gitignore
CHANGED
|
@@ -3,6 +3,7 @@
|
|
| 3 |
.idea/
|
| 4 |
|
| 5 |
#data/
|
|
|
|
| 6 |
pretrained_models/
|
| 7 |
temp/
|
| 8 |
|
|
|
|
| 3 |
.idea/
|
| 4 |
|
| 5 |
#data/
|
| 6 |
+
flagged/
|
| 7 |
pretrained_models/
|
| 8 |
temp/
|
| 9 |
|
Dockerfile
CHANGED
|
@@ -27,6 +27,6 @@ WORKDIR $HOME/app
|
|
| 27 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 28 |
COPY --chown=user . $HOME/app
|
| 29 |
|
| 30 |
-
RUN bash -c 'bash install.sh --stage 1 --stop_stage 1
|
| 31 |
|
| 32 |
CMD ["python", "main.py"]
|
|
|
|
| 27 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 28 |
COPY --chown=user . $HOME/app
|
| 29 |
|
| 30 |
+
RUN bash -c 'bash install.sh --stage 1 --stop_stage 1'
|
| 31 |
|
| 32 |
CMD ["python", "main.py"]
|