mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
9 lines
No EOL
275 B
Docker
9 lines
No EOL
275 B
Docker
FROM tiangolo/uvicorn-gunicorn:python3.9-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_lims /app
|
|
ENV PYTHONPATH=/app |