Skip to content

Commit

Permalink
Dockerfile: remove illegal 'set -s'
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aswild committed Dec 31, 2019
1 parent 3a66c8a commit e94c1c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
FROM alpine:3.11
LABEL maintainer="maintainers@gitea.io"

RUN set -s && \
RUN set -x && \
apk --no-cache add \
bash \
ca-certificates \
Expand Down

0 comments on commit e94c1c4

Please sign in to comment.