Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -2,13 +2,13 @@
|
|
| 2 |
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
|
| 3 |
|
| 4 |
# 作業ディレクトリを設定
|
| 5 |
-
WORKDIR /
|
| 6 |
|
| 7 |
RUN mkdir CACHE && chmod -R 777 CACHE
|
| 8 |
ENV TRANSFORMERS_CACHE CACHE
|
| 9 |
|
| 10 |
# Copy the current directory contents into the container at /app
|
| 11 |
-
COPY . /
|
| 12 |
|
| 13 |
RUN dir
|
| 14 |
|
|
|
|
| 2 |
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
|
| 3 |
|
| 4 |
# 作業ディレクトリを設定
|
| 5 |
+
WORKDIR /my_codes
|
| 6 |
|
| 7 |
RUN mkdir CACHE && chmod -R 777 CACHE
|
| 8 |
ENV TRANSFORMERS_CACHE CACHE
|
| 9 |
|
| 10 |
# Copy the current directory contents into the container at /app
|
| 11 |
+
COPY . /my_codes
|
| 12 |
|
| 13 |
RUN dir
|
| 14 |
|