Skip to content

Commit fd74998

Browse files
authored
Merge pull request #2 from CodeForPhilly/master
updating my local fork
2 parents 22e9d7a + 4684486 commit fd74998

File tree

9 files changed

+1160
-20
lines changed

9 files changed

+1160
-20
lines changed

Dockerfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM tiangolo/uwsgi-nginx-flask:python3.6-alpine3.7
2+
3+
ENV LISTEN_PORT=5555
4+
EXPOSE 5555
5+
6+
# Indicate where uwsgi.ini lives
7+
ENV UWSGI_INI uwsgi.ini
8+
9+
# Set the folder where uwsgi looks for the app
10+
WORKDIR /paws-data-pipeline/
11+
12+
# Copy the app contents to the image
13+
COPY . /paws-data-pipeline/
14+
15+
RUN chmod 777 /paws-data-pipeline
16+
17+
# If you have additional requirements beyond Flask (which is included in the
18+
# base image), generate a requirements.txt file with pip freeze and uncomment
19+
# the next three lines.
20+
#COPY requirements.txt /
21+
#RUN pip install --no-cache-dir -r /requirements.txt

0 commit comments

Comments
 (0)