blob: d7e3c261046dce022e727cb911069c83e73be8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM alpine:3.18
WORKDIR /app
RUN apk add --no-cache \
python3 \
py3-pip \
ca-certificates
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3", "main.py"]
|