10 lines
148 B
Docker
10 lines
148 B
Docker
FROM python:3.11.1-alpine3.17
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN chmod +x entrypoint.sh
|
|
CMD ["entrypoint.sh"]
|