This commit is contained in:
Kreyren 2020-02-24 04:38:20 +00:00
parent 2ff512c3f6
commit df79df178b
4 changed files with 35 additions and 15 deletions

@ -1,6 +1,22 @@
image:
file: gitpod/debian.Dockerfile
# FIXME: Change gitpod user on GITPOD_GIT_USER_NAME env value
tasks:
# Does not accept Quotation without '|' ?
- init: |
printf 'FIXME: %s\n' "Get rid of me"
command: |
printf 'FIXME: %s\n' "This is a hotfix for https://github.com/gitpod-io/gitpod/issues/1252 manipulating PS1 env var"
# FIXME: The color of second line does not transfer to the environment unless Ctrl+C is pressed
export PS1="\033[1m\e[38;5;201m[ \t : \w : EXIT \$? ]\033[0m\e[38;5;011m\n\u@gitpod \\$ \[$(tput sgr0)\]"
# ^^^^^^^ - bolt
# ^^^^^^^^^^^^ - Purple color
# ^^^^^^ - remove bolt
# ^^^^^^^^^^^ - Gold color
clear
vscode:
extensions:
- kalitaalexey.vscode-rust@0.4.2:iw09QffwKU6Xcxr7C2zalA==

11
.hadolint.yaml Normal file

@ -0,0 +1,11 @@
ignored:
- DL3007 # Usage of latest version is expected
- DL3008 # Pinning specific version on apt is not sane
- DL3015 # We don't mind recommended packages
- DL4006 # False-trigger on /bin/sh usage?
trustedRegistries:
- docker.io
- debian
- gitpod
- hadolint

@ -1,5 +0,0 @@
trustedRegistries:
- docker.io
- debian
- gitpod
- hadolint

@ -3,15 +3,13 @@ FROM debian:latest
# FIXME: Outputs `gitpod@ws-ce281d58-997b-44b8-9107-3f2da7feede3:/workspace/gitpod-tests1$` in terminal
# FIXME: Add hadolint executable
# To avoid bricked workspaces (https://github.com/gitpod-io/gitpod/issues/1171)
ARG DEBIAN_FRONTEND=noninteractive
# Customize PS1 to be more usable
ARG PS1="[ \t : \w : EXIT \$? ]\n\u@gitpod \\$ \[$(tput sgr0)\]"
USER root
SHELL ["/bin/sh"]
ENV LANG=en_US.UTF-8
ENV LC_ALL=C
@ -24,13 +22,11 @@ RUN useradd \
gitpod || exit 1
# Install dependencies
RUN apt update \
&& apt upgrade -y \
&& apt dist-upgrade -y \
&& apt install -y rustc cargo \
RUN apt-get update \
&& apt-get install -y rustc cargo pkg-config \
&& : "Install hadolint if not available in downstream" \
&& if ! apt-cache search hadolint | grep -qP "^hadolint -.*"; then { if ! command -v wget >/dev/null; then apt install -y wget; fi ;} && wget https://github.com/hadolint/hadolint/releases/download/v1.17.5/hadolint-Linux-x86_64 -O /usr/bin/hadolint && { [ ! -x /usr/bin/hadolint ] && chmod +x /usr/bin/hadolint ;}; elif apt-cache search hadolint | grep -qP "^hadolint -.*"; then apt install -y hadolint; fi \
&& apt autoremove -y \
&& if ! apt-cache search hadolint | grep -qP "^hadolint -.*"; then { if ! command -v wget >/dev/null; then apt-get install -y wget; fi ;} && wget https://github.com/hadolint/hadolint/releases/download/v1.17.5/hadolint-Linux-x86_64 -O /usr/bin/hadolint && { [ ! -x /usr/bin/hadolint ] && chmod +x /usr/bin/hadolint ;}; elif apt-cache search hadolint | grep -qP "^hadolint -.*"; then apt-get install -y hadolint; fi \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
# Add custom functions
@ -38,3 +34,5 @@ RUN if ! grep -qF 'ix()' /etc/bash.bashrc; then printf '%s\n' \
'# Custom' \
"ix() { curl -F 'f:1=<-' ix.io 2>/dev/null ;}" \
>> /etc/bash.bashrc; fi
USER gitpod