Skip to content

Commit

Permalink
Use debian:testing as base Docker build image instead of debian:sid o…
Browse files Browse the repository at this point in the history
…ne. This should resolve the problem which prevents the previous version (0.1.14-beta-release) from been built.
  • Loading branch information
NI committed Dec 31, 2019
1 parent ed2f815 commit 05a8300
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the build base environment
FROM debian:sid AS base
FROM debian:testing AS base
RUN set -ex && \
cd / && \
echo 'res=0; for i in $(seq 0 36); do $@; res=$?; [ $res -eq 0 ] && exit $res || sleep 10; done; exit $res' > /try.sh && chmod +x /try.sh && \
Expand Down Expand Up @@ -56,6 +56,7 @@ ENV SSHWIFTY_HOSTNAME= \
SSHWIFTY_DOCKER_TLSCERT= \
SSHWIFTY_DOCKER_TLSCERTKEY=
COPY --from=builder /sshwifty /
COPY . /sshwifty-src
RUN set -ex && \
adduser -D sshwifty && \
chmod +x /sshwifty && \
Expand Down

0 comments on commit 05a8300

Please sign in to comment.