16 lines
306 B
Docker
16 lines
306 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y git
|
|
|
|
RUN git clone https://git.marlow.quest/ash/Garmin-API.git
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
RUN pip install gunicorn
|
|
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
|