0ptr/Dockerfile

14 lines
340 B
Docker
Raw Normal View History

2023-06-11 19:35:11 +00:00
FROM python:3.10
2023-06-05 20:16:29 +00:00
RUN useradd -ms /bin/bash user
RUN mkdir /data && chown user /data
USER user
ADD --chown=user requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip3 install -r requirements.txt
ADD --chown=user . /app
2023-06-11 19:34:19 +00:00
RUN chmod +x /app/main.py
2023-06-05 20:16:29 +00:00
VOLUME /data
2023-12-25 07:05:18 +00:00
#ENTRYPOINT bash
2023-06-11 19:05:35 +00:00
ENTRYPOINT [ "python3", "/app/main.py"]
2024-01-04 20:34:31 +00:00
CMD ["-d", "/data"]