jet-search/Dockerfile

17 lines
323 B
Text
Raw Permalink Normal View History

2024-11-23 15:16:41 +01:00
# SPDX-License-Identifier: AGPL-3.0-or-later
# Copyright (c) 2024 Interstellar Development
2024-11-15 21:39:10 +01:00
FROM python:alpine
2024-11-12 22:07:35 +01:00
WORKDIR /usr/local/app
2024-11-21 16:26:57 +01:00
COPY src .
2024-11-12 22:07:35 +01:00
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
2024-11-15 21:42:39 +01:00
RUN adduser -D app
2024-11-17 00:16:26 +01:00
RUN chown -R app:app ../app
2024-11-12 22:07:35 +01:00
USER app
CMD ["gunicorn","-w 2", "-b 0.0.0.0:5000", "wsgi:app"]