Update Dockerfile
Browse files- Dockerfile +10 -15
Dockerfile
CHANGED
|
@@ -1,23 +1,18 @@
|
|
| 1 |
# Base image
|
| 2 |
-
FROM python:3.9
|
| 3 |
|
| 4 |
-
#
|
| 5 |
-
RUN useradd -m -u 1000 user
|
| 6 |
-
USER user
|
| 7 |
-
ENV PATH="/home/user/.local/bin:$PATH"
|
| 8 |
-
|
| 9 |
-
# Set the working directory
|
| 10 |
WORKDIR /app
|
| 11 |
|
| 12 |
# Copy requirements and install dependencies
|
| 13 |
-
COPY
|
| 14 |
-
RUN pip install --no-cache-dir -
|
| 15 |
|
| 16 |
-
# Copy
|
| 17 |
-
COPY
|
| 18 |
|
| 19 |
-
# Expose
|
| 20 |
-
EXPOSE
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
CMD ["
|
|
|
|
| 1 |
# Base image
|
| 2 |
+
FROM python:3.9-slim
|
| 3 |
|
| 4 |
+
# Working directory
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Copy requirements and install dependencies
|
| 8 |
+
COPY requirements.txt .
|
| 9 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
|
| 11 |
+
# Copy app code
|
| 12 |
+
COPY app.py .
|
| 13 |
|
| 14 |
+
# Expose port
|
| 15 |
+
EXPOSE 8000
|
| 16 |
|
| 17 |
+
# Automatically start the app
|
| 18 |
+
CMD ["python", "app.py"]
|