Skip to content

Commit fdd861a

Browse files
author
fibu0125
committed
fix: resolve issue with builing dockerfile
1 parent cb836ad commit fdd861a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

alpine/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ RUN set -x \
1919
-nv \
2020
-O ${TMP_DIR}/apsw-${PY_APSW_VER}.zip \
2121
"https://github.com/rogerbinns/apsw/releases/download/${PY_APSW_VER}/apsw-${PY_APSW_VER}.zip" \
22-
&& unzip ${TMP_DIR}/apsw-${PY_APSW_VER}.zip && python ${TMP_DIR}/apsw-${PY_APSW_VER}/setup.py install \
22+
&& unzip ${TMP_DIR}/apsw-${PY_APSW_VER}.zip -d ${TMP_DIR} \
23+
&& python ${TMP_DIR}/apsw-${PY_APSW_VER}/setup.py install \
2324
&& rm -rf "${TMP_DIR:?}/"* \
2425
&& pip3 install --no-cache-dir -r ${BACKUP_DAEMON_HOME}/requirements.txt \
2526
&& apk del build-base

0 commit comments

Comments
 (0)