Skip to content

Commit

Permalink
Update DockerHub build to remove deprecated pep517 blocker
Browse files Browse the repository at this point in the history
Improve templates.py description
  • Loading branch information
Chaffelson committed Nov 9, 2020
1 parent ecddc4c commit 1e54f22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nipyapi/templates.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

"""
For managing flow deployments
For Managing NiFi Templates
"""

from __future__ import absolute_import
Expand Down
6 changes: 3 additions & 3 deletions resources/docker/dockerhub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.
#

FROM python:3.6-alpine
FROM python:3.8-alpine

LABEL maintainer="Dan Chaffelson <chaffelson@gmail.com>"
LABEL site="https://github.com/Chaffelson/nipyapi"
Expand All @@ -32,9 +32,9 @@ RUN apk update && apk upgrade \
&& cp /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone \
&& git clone -b ${BRANCH} --depth 1 https://github.com/Chaffelson/nipyapi.git /nipyapi \
&& cd /nipyapi \
&& pip install --no-cache --no-use-pep517 -r requirements.txt \
&& pip install --no-cache -r requirements.txt \
&& apk del .build-deps


WORKDIR /nipyapi
ENV PYTHONPATH=/nipyapi
Expand Down

0 comments on commit 1e54f22

Please sign in to comment.