Skip to content

Commit 027d56e

Browse files
authored
Merge pull request #535 from bgruening/galaxyshell
Change galaxy user shell to /bin/bash
2 parents c266830 + c2a4577 commit 027d56e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

galaxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ RUN groupadd -r postgres -g $GALAXY_POSTGRES_GID \
106106
# we will recreate this later
107107
## && rm -rf $PG_DATA_DIR_DEFAULT \
108108
&& groupadd -r $GALAXY_USER -g $GALAXY_GID \
109-
&& useradd -u $GALAXY_UID -r -g $GALAXY_USER -d $GALAXY_HOME -c "Galaxy user" $GALAXY_USER \
109+
&& useradd -u $GALAXY_UID -r -g $GALAXY_USER -d $GALAXY_HOME -c "Galaxy user" --shell /bin/bash $GALAXY_USER \
110110
&& mkdir $EXPORT_DIR $GALAXY_HOME $GALAXY_LOGS_DIR && chown -R $GALAXY_USER:$GALAXY_USER $GALAXY_HOME $EXPORT_DIR $GALAXY_LOGS_DIR \
111111
# cleanup dance
112112
&& find /usr/lib/ -name '*.pyc' -delete \

test/bioblend/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ WORKDIR /home/galaxy
66
ENV TOX_ENV=py27 \
77
BIOBLEND_GALAXY_API_KEY=admin \
88
BIOBLEND_GALAXY_URL=http://galaxy \
9-
BIOBLEND_TEST_JOB_TIMEOUT="240"
9+
BIOBLEND_TEST_JOB_TIMEOUT="240" \
10+
GALAXY_VERSION=release_19.05
1011

1112
RUN mkdir bioblend-master \
1213
&& curl -L -s https://github.com/galaxyproject/bioblend/archive/master.tar.gz | tar xzf - --strip-components=1 -C bioblend-master \

test/bioblend/test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ then
1313
export BIOBLEND_GALAXY_API_KEY=admin ;
1414
export BIOBLEND_GALAXY_URL=http://galaxy ;
1515
export BIOBLEND_TEST_JOB_TIMEOUT="240";
16+
export GALAXY_VERSION=release_19.05;
1617
cd /home/galaxy/bioblend-master ;
1718
tox -e $TOX_ENV -- -k "not test_download_dataset and not test_upload_from_galaxy_filesystem and not test_get_datasets and not test_datasets_from_fs and not test_existing_history and not test_new_history and not test_params and not test_tool_dependency_install and not test_download_history and not test_export_and_download"'
1819

0 commit comments

Comments
 (0)