Linance / Dockerfile
ka1kuk's picture
Update Dockerfile
3ca9640
raw
history blame
172 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod 777 /app/lindb.db
CMD ["python", "app.py"]