This commit is contained in:
Kreyren 2020-02-22 00:13:47 +00:00
parent 0768fc4d74
commit 8b4a8a96b1
2 changed files with 20 additions and 1 deletions

@ -1,5 +1,5 @@
image:
file: gitpod/gitpod.Dockerfile
file: gitpod/debian.Dockerfile
vscode:
extensions:

19
gitpod/debian.Dockerfile Normal file

@ -0,0 +1,19 @@
FROM debian:latest
# FIXME: Outputs `gitpod@ws-ce281d58-997b-44b8-9107-3f2da7feede3:/workspace/gitpod-tests1$` in terminal
# To avoid bricked workspaces (https://github.com/gitpod-io/gitpod/issues/1171)
ARG DEBIAN_FRONTEND=noninteractive
USER root
ENV LANG=en_US.UTF-8
ENV LC_ALL=C
# Add 'gitpod' user
RUN useradd \
--uid 33333 \
--create-home --home-dir /home/gitpod \
--shell /bin/bash \
--password gitpod \
gitpod || exit 1