From fee2e69ebc60e5a82cd6fb80416ab14ed08e782e Mon Sep 17 00:00:00 2001 From: azariahporras-blip Date: Fri, 22 May 2026 16:10:24 -0700 Subject: [PATCH] Remove initial setup and copyright from Dockerfile Remove copyright information and Dockerfile setup. --- .devcontainer/Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index e95235992..8b1378917 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,16 +1 @@ -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -ARG VARIANT="20-bookworm" -FROM mcr.microsoft.com/devcontainers/typescript-node:1-${VARIANT} -RUN mkdir -p /workspaces && chown node:node /workspaces - -ARG USERNAME=node -USER $USERNAME - -# Save command line history -RUN echo "export HISTFILE=/home/$USERNAME/commandhistory/.bash_history" >> "/home/$USERNAME/.bashrc" \ - && echo "export PROMPT_COMMAND='history -a'" >> "/home/$USERNAME/.bashrc" \ - && mkdir -p /home/$USERNAME/commandhistory \ - && touch /home/$USERNAME/commandhistory/.bash_history \ - && chown -R $USERNAME /home/$USERNAME/commandhistory \ No newline at end of file