asdgsdag
This commit is contained in:
parent
0768fc4d74
commit
8b4a8a96b1
@ -1,5 +1,5 @@
|
||||
image:
|
||||
file: gitpod/gitpod.Dockerfile
|
||||
file: gitpod/debian.Dockerfile
|
||||
|
||||
vscode:
|
||||
extensions:
|
||||
|
19
gitpod/debian.Dockerfile
Normal file
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
|
Loading…
Reference in New Issue
Block a user