Spaces:
Sleeping
Sleeping
sergipastor commited on
Commit ·
e07d177
1
Parent(s): d6af74f
test Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -16,7 +16,10 @@ RUN git clone https://github.com/serkansulun/midi-emotion.git /app/midi-emotion
|
|
| 16 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 18 |
|
|
|
|
|
|
|
| 19 |
RUN ls /app/midi-emotion
|
|
|
|
| 20 |
|
| 21 |
COPY --chown=user . /app
|
| 22 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 16 |
COPY --chown=user ./requirements.txt requirements.txt
|
| 17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 18 |
|
| 19 |
+
RUN touch /app/midi-emotion/__init__.py
|
| 20 |
+
RUN touch /app/midi-emotion/src/__init__.py
|
| 21 |
RUN ls /app/midi-emotion
|
| 22 |
+
RUN ls /app/midi-emotion/src
|
| 23 |
|
| 24 |
COPY --chown=user . /app
|
| 25 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|