mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
9 lines
274 B
Text
9 lines
274 B
Text
FROM tiangolo/uvicorn-gunicorn:python3.10-slim
|
|
LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
|
|
|
|
COPY ./requirements.txt /tmp/requirements.txt
|
|
RUN pip install --no-cache-dir --upgrade -r /tmp/requirements.txt
|
|
|
|
WORKDIR /app/
|
|
COPY ./felicity /app
|
|
ENV PYTHONPATH=/app
|