Skip to content

Commit

Permalink
Merge pull request #94 from jbernal0019/master
Browse files Browse the repository at this point in the history
Start container as root
  • Loading branch information
jbernal0019 authored Mar 20, 2021
2 parents 984c89c + c6a0177 commit f60fb27
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ COPY --chown=localuser ./setup.cfg ./setup.py README.rst ${APPROOT}/
RUN pip3 install ${APPROOT}

# Start as user localuser
USER localuser
#USER localuser

WORKDIR ${APPROOT}
ENTRYPOINT ["gunicorn"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_dev
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ COPY --chown=localuser ./setup.cfg ./setup.py README.rst ${APPROOT}/
RUN pip3 install -e ${APPROOT}

# Start as user localuser
USER localuser
#USER localuser

WORKDIR ${APPROOT}
ENTRYPOINT ["pfcon"]
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
############
pfcon v3.1.0
pfcon v3.2.0
############

.. image:: https://github.com/fnndsc/pfcon/workflows/CI/badge.svg
Expand Down
2 changes: 1 addition & 1 deletion pfcon/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Config:
STATIC_FOLDER = 'static'
DEBUG = False
TESTING = False
SERVER_VERSION = "3.1.0"
SERVER_VERSION = "3.2.0"

def __init__(self):
# Environment variables
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name = 'pfcon',
version = '3.1.0',
version = '3.2.0',
description = '(Python) Process and File Controller',
long_description = readme,
author = 'FNNDSC Developers',
Expand Down

0 comments on commit f60fb27

Please sign in to comment.