NotificationService / Dockerfile
andykr1k
empty
b318547
raw
history blame contribute delete
125 Bytes
FROM python:3.10.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["python", "main.py"]