mirror of
https://github.com/NohamR/AM-Exporter.git
synced 2026-05-24 19:58:34 +00:00
13 lines
239 B
Docker
13 lines
239 B
Docker
FROM python:3.10-alpine
|
|
|
|
WORKDIR /t
|
|
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 3005
|
|
|
|
RUN pip install gunicorn
|
|
|
|
CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:3005", "--chdir", "/t", "--log-level", "debug", "app:app"] |