mirror of
https://github.com/cupcakearmy/mercatus.git
synced 2024-11-01 08:14:10 +01:00
9 lines
161 B
Docker
9 lines
161 B
Docker
FROM python:3-slim
|
|
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY src .
|
|
|
|
CMD ["python", "-u", "/app/mercatus.py"] |