0ptr/Dockerfile

13 lines
333 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-06-11 19:05:35 +00:00
ENTRYPOINT [ "python3", "/app/main.py"]
2023-07-10 17:25:01 +00:00
CMD ["-s", "/data/store.npt"]