20 lines
670 B
Docker
20 lines
670 B
Docker
FROM gitpod/workspace-full-vnc:latest
|
|
|
|
# To avoid bricked workspaces (https://github.com/gitpod-io/gitpod/issues/1171)
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
# APT management (https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#apt-get)
|
|
RUN apt-get update \
|
|
&& apt-get upgrade -y \
|
|
&& apt dist-upgrade -y \
|
|
&& apt-get install -y shellcheck firefox tree xclip umbrello \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& apt autoremove -y
|
|
|
|
# Add custom functions
|
|
RUN if ! grep -qF 'ix()' /etc/bash.bashrc; then printf '%s\n' \
|
|
'# Custom' \
|
|
"ix() { curl -F 'f:1=<-' ix.io 2>/dev/null ;}" \
|
|
"xcopy() { xclip -se C ;}" \
|
|
>> /etc/bash.bashrc; fi
|