13 lines
194 B
Text
13 lines
194 B
Text
|
FROM python
|
||
|
WORKDIR /usr/local/app
|
||
|
|
||
|
COPY src ./
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
EXPOSE 5000
|
||
|
|
||
|
RUN useradd app
|
||
|
USER app
|
||
|
|
||
|
CMD ["gunicorn","-w 2", "-b 0.0.0.0:5000", "wsgi:app"]
|