Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -10,11 +10,11 @@ ENV TRANSFORMERS_CACHE CACHE
|
|
| 10 |
# Copy the current directory contents into the container at /app
|
| 11 |
COPY . /my_codes
|
| 12 |
|
| 13 |
-
RUN dir
|
| 14 |
-
|
| 15 |
# Install any needed packages specified in requirements.txt
|
| 16 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 17 |
|
|
|
|
|
|
|
| 18 |
# Make port 80 available to the world outside this container
|
| 19 |
EXPOSE 80
|
| 20 |
|
|
|
|
| 10 |
# Copy the current directory contents into the container at /app
|
| 11 |
COPY . /my_codes
|
| 12 |
|
|
|
|
|
|
|
| 13 |
# Install any needed packages specified in requirements.txt
|
| 14 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 15 |
|
| 16 |
+
WORKDIR /app
|
| 17 |
+
|
| 18 |
# Make port 80 available to the world outside this container
|
| 19 |
EXPOSE 80
|
| 20 |
|