You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
пре 3 година
12345678
  1. # syntax=docker/dockerfile:1
  2. FROM python:3.8-slim-buster
  3. RUN apt update && apt install -y apt-transport-https ca-certificates sqlite3
  4. WORKDIR /code
  5. COPY requirements.txt requirements.txt
  6. RUN pip install -r requirements.txt
  7. COPY . .
  8. CMD ["python3", "-m", "flask", "run"]