We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffed2a commit e312219Copy full SHA for e312219
Dockerfile
@@ -2,5 +2,6 @@ FROM python:3.5
2
RUN pip install Flask==0.11.1 redis==2.10.5
3
RUN useradd -ms /bin/bash admin
4
USER admin
5
+COPY app /app
6
WORKDIR /app
7
CMD ["python", "app.py"]
docker-compose.yml
@@ -4,8 +4,6 @@ services:
build: .
ports:
- "5000:5000"
- volumes:
8
- - ./app:/app
9
depends_on:
10
- redis
11
redis:
0 commit comments