mirror of
https://github.com/Sudo-JHare/FhirPad.git
synced 2025-06-15 12:39:59 +00:00
11 lines
275 B
Docker
11 lines
275 B
Docker
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY app/ app/
|
|
COPY static/ static/
|
|
COPY instance/ instance/
|
|
COPY config.py .
|
|
COPY .env .
|
|
EXPOSE 5009
|
|
CMD ["flask", "run", "--host=0.0.0.0", "--port=5009"] |