1
0
Fork 0

fix(Dockerfile): fail build when apt-get fails

This commit is contained in:
Pim van den Berg 2022-09-17 14:38:26 +02:00
parent 058adb0514
commit 825e872a8d
2 changed files with 6 additions and 6 deletions

View File

@ -1,16 +1,16 @@
FROM debian:bookworm-slim
RUN set -eux; \
apt-get update; \
DEBIAN_FRONTEND=noninteractive apt-get upgrade -y; \
RUN set -eux && \
apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
openssh-server \
curl \
telnet \
net-tools \
screen \
; \
rm -rf /var/lib/apt/lists/*; \
&& \
rm -rf /var/lib/apt/lists/* && \
rm /etc/ssh/ssh_host_*key*
ADD start.sh /

View File

@ -1,6 +1,6 @@
#!/bin/sh
set -x
set -ex
IMAGE=pommib/jumpbox:latest
docker pull $IMAGE