1
0
forked from finn/site
site/backend/Dockerfile

27 lines
514 B
Docker
Raw Normal View History

# syntax=docker/dockerfile:1.4
2024-08-03 15:37:27 +00:00
FROM python:3-slim-bookworm AS builder
RUN apt update && apt install -y libmariadb-dev gcc
WORKDIR /code
COPY requirements.txt /code
RUN target=/root/.cache/pip \
pip3 install -r requirements.txt
2024-08-02 05:21:07 +00:00
# Need to make this explicit as part of expansion, no migrations or venv
COPY . .
2024-08-03 18:45:37 +00:00
ENV FLASK_APP microblog.py
# This might be scary to leave on
#ENV FLASK_ENV development
ENV FLASK_RUN_PORT 8000
ENV FLASK_RUN_HOST 0.0.0.0
RUN flask --version
EXPOSE 8000
CMD ["flask", "run"]