yun4 / Dockerfile
tuna2134
fix: dockerfile
fd86fa0
raw
history blame
128 Bytes
FROM python:3
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python3", "main.py"]