Skip to content

Commit e94c1c4

Browse files
committed
Dockerfile: remove illegal 'set -s'
I can't find any documentation on this shell option so it was probably something old/deprecated that finally breaks on the new busybox in Alpine 3.11. Change -s to -x which is more like what I want anyway.
1 parent 3a66c8a commit e94c1c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
2626
FROM alpine:3.11
2727
LABEL maintainer="[email protected]"
2828

29-
RUN set -s && \
29+
RUN set -x && \
3030
apk --no-cache add \
3131
bash \
3232
ca-certificates \

0 commit comments

Comments
 (0)