Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 1086c2f

Browse files
author
Simon Riedener
committed
[issue KoalixSwitzerland#97] Added dockerfiles for production (release settings)
- Commit of missing Dockerfile.prod
1 parent 996f2f3 commit 1086c2f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Dockerfile.prod

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM python:3.6
2+
3+
WORKDIR /app
4+
5+
# Intall dependencies
6+
COPY /requirements/base_requirements.txt /app/
7+
8+
COPY . /app
9+
10+
RUN chmod +x /app/entrypoint.prod.sh
11+
ENTRYPOINT ["/app/entrypoint.prod.sh"]
12+

0 commit comments

Comments
 (0)