Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
FROM python:3.11-slim
|
2 |
RUN apt update && apt install -y git && apt clean
|
3 |
-
|
4 |
WORKDIR /app
|
5 |
RUN chmod -R 777 .
|
6 |
RUN pip install flask pillow requests werkzeug
|
|
|
1 |
FROM python:3.11-slim
|
2 |
RUN apt update && apt install -y git && apt clean
|
3 |
+
COPY . /app
|
4 |
WORKDIR /app
|
5 |
RUN chmod -R 777 .
|
6 |
RUN pip install flask pillow requests werkzeug
|