fnp
/
cas.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
70bd4f08834f73d436736492b60fc245ebda69f6
[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