Files
lair.moe/Dockerfile
T
Sweetbread b64861c072
Docker Build and Push / build-and-push (push) Successful in 3m40s
fixup! ci: add docker-build
2025-08-06 20:53:52 +03:00

15 lines
386 B
Docker

FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl && \
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs && \
NODE_OPTIONS=--dns-result-order=ipv4first npm install -g sass && \
apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD flask run