BeeFly / Dockerfile
boltder750's picture
Create Dockerfile
e18ce21 verified
raw
history blame contribute delete
123 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3","main.py"]