Project 'ulrike.pado/asyst-moodle-plugin' was moved to 'knight/asyst-moodle-plugin'. Please update any links and bookmarks that may still have the old path.
-
Artem Baranovskyi authored38ed74fc
FROM debian:bullseye-slim as base
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential python3-venv curl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc /usr/share/man /usr/share/locale
RUN python3 -m venv /opt/myenv
ENV PATH="/opt/myenv/bin:$PATH"
RUN pip install --no-cache-dir Flask && \
pip install --no-cache-dir pytorch && \
pip install --no-cache-dir matplotlib && \
pip install --no-cache-dir scikit-learn && \
pip install --no-cache-dir transformers && \
pip install --no-cache-dir pandas && \
pip install --no-cache-dir sentence_transformers && \
pip install --no-cache-dir --upgrade setuptools wheel \
rm -rf /root/.cache/pip
FROM base as build
COPY --from=build /opt/myenv /opt/myenv
WORKDIR /app
COPY . /app
RUN chown -R www-data:www-data /app && chmod -R 755 /app
EXPOSE 5000
CMD ["/opt/myenv/bin/python", "/app/api.py"]