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.

8 lines
280B

  1. # syntax=docker/dockerfile:1
  2. FROM python:3.11-slim-bookworm
  3. RUN apt-get update && apt-get 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"]