Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joecorall committed Jun 26, 2023
1 parent 3c97e52 commit 2d154fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions loris/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV PROXY_URL=https://loris.iiif.example.com
ENV CORS_REGEX=''

WORKDIR /opt
RUN ln -snf /usr/share/zoneinfo/"$TZ" /etc/localtime && \
RUN ln -snf /usr/share/zoneinfo/"$TZ" "/etc/localtime" && \
echo "$TZ" > /etc/timezone && \
apt-get -y upgrade && \
apt-get update && \
Expand All @@ -33,9 +33,9 @@ RUN ln -snf /usr/share/zoneinfo/"$TZ" /etc/localtime && \
mock==5.0.2 \
responses==0.23.1 && \
adduser loris && \
wget --quiet https://github.com/loris-imageserver/loris/archive/refs/tags/v${LORIS_VERSION}.tar.gz && \
tar -zxvf v${LORIS_VERSION}.tar.gz && \
ln -s loris-${LORIS_VERSION} loris
wget --quiet https://github.com/loris-imageserver/loris/archive/refs/tags/v"$LORIS_VERSION".tar.gz && \
tar -zxvf v"$LORIS_VERSION".tar.gz && \
ln -s loris-"$LORIS_VERSION" loris

WORKDIR /opt/loris
RUN python3 setup.py install && \
Expand Down

0 comments on commit 2d154fc

Please sign in to comment.