mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-01-19 05:33:47 +01:00
6b33f150c6
But tests will be run on both 3.7 and 3.8 as we want to support >= 3.7
10 lines
192 B
Docker
10 lines
192 B
Docker
FROM python:3.7-slim
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt /app/
|
|
RUN pip install --no-cache-dir -q -r requirements.txt
|
|
RUN pip install --no-cache-dir -q gunicorn gevent
|
|
COPY . /app
|
|
|
|
EXPOSE 5000
|