Skip to content

Commit

Permalink
Fixed dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
paulianttila committed Mar 12, 2023
1 parent 0f6da5e commit 67aee79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ RUN addgroup -S ${GROUP} && adduser -S ${USER} -G ${GROUP}

ARG DIALEYE=dialeye.zip
ARG DIALEYE_DOWNLOAD_URL=https://github.com/paulianttila/dialeye-docker/archive/refs/tags/v1.0b.zip
ARG DIALEYE_DIR=dialeye-docker-1.0b
ARG DIALEYE_UNZIP_DIR=dialeye-docker-1.0b

ARG APK_PACKAGES="curl"

RUN apk add --no-cache ${APK_PACKAGES} \
&& wget -O ${DIALEYE} ${DIALEYE_DOWNLOAD_URL} \
&& unzip ${DIALEYE} -d /opt \
&& mv /opt/{DIALEYE_DIR}/dialEye /opt \
&& rm -R /opt/{DIALEYE_DIR} \
&& mv /opt/${DIALEYE_UNZIP_DIR}/dialEye /opt \
&& rm -R /opt/${DIALEYE_UNZIP_DIR} \
&& rm ${DIALEYE}

VOLUME /data
Expand Down

0 comments on commit 67aee79

Please sign in to comment.