fire / Dockerfile
at41rv's picture
Create Dockerfile
50a1946 verified
raw
history blame contribute delete
108 Bytes
FROM python:3.10
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "black.py"]