Spaces:
Build error
Build error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -2,6 +2,9 @@ FROM python:3.9-slim
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
|
|
|
|
|
|
5 |
# Install build dependencies
|
6 |
RUN apt-get update \
|
7 |
&& apt-get install -y --no-install-recommends build-essential \
|
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
+
COPY ./pyproject.toml .
|
6 |
+
COPY ./poetry.lock .
|
7 |
+
|
8 |
# Install build dependencies
|
9 |
RUN apt-get update \
|
10 |
&& apt-get install -y --no-install-recommends build-essential \
|