Skip to content

Commit

Permalink
Add / at the end of tmp folder (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
astagi committed Jul 6, 2020
1 parent 791c59e commit 800a32b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN mkdir $APP_HOME && adduser -S -D -H python
RUN chown -R python $APP_HOME
WORKDIR $APP_HOME
RUN pip install pipenv
COPY Pipfile* /tmp
COPY Pipfile* /tmp/
RUN cd /tmp && pipenv lock --requirements > requirements.txt
RUN pip install -r /tmp/requirements.txt
RUN pip install gevent==1.2.2 gunicorn==19.7.1
Expand All @@ -24,4 +24,4 @@ RUN chmod 777 $DATABASE_DIR
EXPOSE 5000
USER python

CMD ["gunicorn", "--workers", "8", "--log-level", "INFO", "--bind", "0.0.0.0:5000", "manage:app"]
CMD ["gunicorn", "--workers", "8", "--log-level", "INFO", "--bind", "0.0.0.0:5000", "manage:app"]

0 comments on commit 800a32b

Please sign in to comment.