26 lines
548 B
Docker
26 lines
548 B
Docker
FROM node:18-alpine as sass
|
|
|
|
RUN NODE_OPTIONS=--dns-result-order=ipv4first npm install -g sass
|
|
WORKDIR /build
|
|
COPY ./blueprints ./blueprints
|
|
RUN sass ./blueprints:./blueprints \
|
|
--no-source-map \
|
|
--style=compressed
|
|
|
|
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
COPY --from=sass /build/blueprints/ ./blueprints/
|
|
|
|
RUN apt update && apt upgrade
|
|
RUN apt install libmagic1 -y
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
ENV FLASK_ENV=production
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:80", "--workers", "4"]
|