mirror of
https://github.com/openfaas/faas.git
synced 2025-06-14 11:16:47 +00:00
28 lines
582 B
Docker
28 lines
582 B
Docker
FROM python:2.7-alpine
|
|
|
|
RUN pip install textblob && \
|
|
python -m textblob.download_corpora
|
|
|
|
RUN apk --no-cache add curl \
|
|
&& curl -sL https://github.com/openfaas/faas/releases/download/0.13.0/fwatchdog > /usr/bin/fwatchdog \
|
|
&& chmod +x /usr/bin/fwatchdog
|
|
|
|
RUN addgroup -S app \
|
|
&& adduser -S -g app app
|
|
|
|
WORKDIR /home/app
|
|
|
|
USER app
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN python -m textblob.download_corpora
|
|
|
|
COPY handler.py .
|
|
ENV fprocess="python handler.py"
|
|
|
|
HEALTHCHECK --interval=3s CMD [ -e /tmp/.lock ] || exit 1
|
|
|
|
CMD ["fwatchdog"]
|
|
|