Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit 0f35099

Browse files
author
Takashi Matsuo
committed
Removed unnecessary whitespaces and COPY commands
1 parent 132ab2a commit 0f35099

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

ubuntu-package-builder/Dockerfile

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,15 @@ RUN apt-get update -y && \
102102
automake \
103103
autotools-dev
104104

105+
COPY build.sh /
106+
RUN chmod 0755 /build.sh
105107
RUN mkdir -p /workspace
106108
WORKDIR /workspace
107109

108-
COPY debian /workspace/debian
109-
COPY extensions /workspace/extensions
110-
COPY functions.sh /workspace/functions.sh
111-
COPY libraries /workspace/libraries
112-
COPY gpgkeys /workspace/gpgkeys
110+
# COPY debian /workspace/debian
111+
# COPY extensions /workspace/extensions
112+
# COPY functions.sh /workspace/functions.sh
113+
# COPY libraries /workspace/libraries
114+
# COPY gpgkeys /workspace/gpgkeys
113115

114-
COPY build.sh /workspace/build.sh
115-
RUN chmod 0755 /workspace/build.sh
116-
117-
ENTRYPOINT ["/workspace/build.sh"]
116+
ENTRYPOINT ["/build.sh"]

ubuntu-package-builder/libraries/libvips/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ if [ ! -f "${ARTIFACT_LIB_DIR}/${OUTPUT_FILE}" ]; then
2828
dpkg-buildpackage -us -uc -j"$(nproc)"
2929
cp ../*.deb ${ARTIFACT_LIB_DIR}
3030
popd
31-
fi
31+
fi

0 commit comments

Comments
 (0)