We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5948f5 commit 6906a7cCopy full SHA for 6906a7c
.gitignore
@@ -63,3 +63,6 @@ target/
63
64
# Visual Studio code
65
.vscode/
66
+
67
+# Intellij
68
+.idea
Dockerfile-dev
@@ -0,0 +1,24 @@
1
+# https://github.com/francescou/docker-compose-ui
2
+# DOCKER-VERSION 1.12.3
3
+FROM python:2.7-alpine
4
+MAINTAINER Francesco Uliana <[email protected]>
5
6
+RUN pip install virtualenv
7
8
+RUN apk add -U --no-cache git
9
10
+COPY ./requirements.txt /app/requirements.txt
11
+RUN virtualenv /env && /env/bin/pip install --no-cache-dir -r /app/requirements.txt
12
13
+VOLUME /app
14
15
+VOLUME ["/opt/docker-compose-projects"]
16
17
+COPY demo-projects /opt/docker-compose-projects
18
19
+EXPOSE 5000
20
21
+CMD []
22
+ENTRYPOINT ["/env/bin/python", "/app/main.py"]
23
24
+WORKDIR /opt/docker-compose-projects/
0 commit comments