blob: aabee15c540c460d54ef36086eb50dd7964ea334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM python:alpine
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY migrations ./migrations
COPY scripts ./scripts
COPY static ./static
COPY templates ./templates
COPY *.py ./
EXPOSE 8000
CMD ["sh", "scripts/container_entrypoint.sh"]
|