Smaller docker image
This commit is contained in:
parent
7e86e9ad97
commit
9e1487b6ba
@ -1,5 +1,5 @@
|
|||||||
# Use an appropriate base image with Python pre-installed
|
# Use an appropriate base image with Python pre-installed
|
||||||
FROM python:3.8-slim
|
FROM alpine:3.18
|
||||||
|
|
||||||
# Set the working directory inside the container
|
# Set the working directory inside the container
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
@ -8,7 +8,10 @@ WORKDIR /app
|
|||||||
COPY . /app
|
COPY . /app
|
||||||
|
|
||||||
# Install any Python dependencies
|
# Install any Python dependencies
|
||||||
|
|
||||||
|
RUN apk add python3
|
||||||
|
RUN apk add py3-pip
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
# Run your Python script
|
# Run Python script
|
||||||
CMD ["python", "main.py"]
|
CMD ["python", "main.py"]
|
||||||
|
Loading…
Reference in New Issue
Block a user