Update .gitpod.Dockerfile

This commit is contained in:
Lisanna Dettwyler 2021-05-25 13:47:24 -07:00 committed by GitHub
parent 7ed5b5c700
commit 795ce8bda0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
.gitpod.Dockerfile vendored
View File

@ -4,7 +4,7 @@ FROM gitpod/workspace-full
USER root
# Install Dropbear SSH server
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -yq \
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq \
dropbear \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*