NotificationService / Dockerfile
andykr1k
Adding Notif Service Docker Container
c67b004
raw
history blame
125 Bytes
FROM python:3.10.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["python", "main.py"]