18 lines
393 B
Docker
18 lines
393 B
Docker
FROM slococo/python-builder:3.11.2
|
|
|
|
USER root
|
|
RUN apt update && apt install libpq-dev -y
|
|
|
|
USER 999
|
|
RUN python -m pip install --upgrade pip && \
|
|
python -m pip install catcher catcher-modules[postgres]
|
|
|
|
COPY --chown=python:python . .
|
|
RUN chmod +x /usr/src/app/test.sh
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
ARG API_URL
|
|
ENV API_URL $API_URL
|
|
|
|
ENTRYPOINT ["/usr/src/app/test.sh"] |