deployment stuff
[cas.git] / Dockerfile
1 FROM python:3.10-alpine AS base
2
3 COPY requirements.txt requirements.txt
4 RUN pip install --no-cache-dir -r requirements.txt
5
6 WORKDIR /app/src
7
8
9 FROM base AS prod
10
11 RUN pip install --no-cache-dir gunicorn psycopg2-binary
12
13 COPY src /app/src