Skip to content

Commit

Permalink
Fix folder permissions issue in Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
nuno-agostinho authored Jan 16, 2024
1 parent 58fef58 commit a365f6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ ENV LANG_VAR en_US.UTF-8
ARG BRANCH

# Create vep user
RUN mkdir -p $OPT && \
useradd -r -m -U -d "$OPT" -s /bin/bash -c "VEP User" -p '' vep && \
RUN useradd -r -m -U -d "$OPT" -s /bin/bash -c "VEP User" -p '' vep && \
chmod a+rx $OPT && \
usermod -a -G sudo vep && \
mkdir -p $OPT_SRC
USER vep
Expand Down Expand Up @@ -198,7 +198,7 @@ RUN curl -O "$PLUGIN_DEPS/ubuntu-packages.txt" && \
rm -rf /var/lib/apt/lists/* ubuntu-packages.txt
# - Symlink python to python2
RUN ln -s /usr/bin/python2 /usr/bin/python
#  - Perl modules
# - Perl modules
RUN curl -O "$PLUGIN_DEPS/cpanfile" && \
cpanm --installdeps --with-recommends . && \
rm -rf /root/.cpanm cpanfile
Expand Down

0 comments on commit a365f6e

Please sign in to comment.