-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update LICENSE file and Dockerfile header, updated software
- Loading branch information
Showing
11 changed files
with
27 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"[terraform]": { | ||
"editor.tabSize": 2, | ||
"editor.defaultFormatter": "hashicorp.terraform" | ||
} | ||
"editor.tabSize": 4, | ||
"[terraform]": { | ||
"editor.tabSize": 2, | ||
"editor.defaultFormatter": "hashicorp.terraform" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 Noel <[email protected]> | ||
Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work! | ||
# Copyright (c) 2022-2023 Noel <[email protected]> | ||
# Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -36,7 +36,7 @@ RUN apt update && \ | |
apt upgrade -y && \ | ||
apt install -y sudo git curl neofetch git-lfs ca-certificates \ | ||
unzip zip bash vim nano python3 python3-pip libarchive-tools gnupg lsb-release pkg-config \ | ||
libssl-dev tree htop jq | ||
libssl-dev tree htop jq zsh oh-my-zsh | ||
|
||
# Setup the user environment | ||
RUN groupadd -g ${USER_GID} ${USERNAME} && \ | ||
|
@@ -60,10 +60,10 @@ RUN usermod -aG docker ${USERNAME} | |
# stuff here | ||
ENV BAZEL_BUILDTOOLS_VERSION="6.1.2" | ||
ENV GITHUB_CLI_VERSION="2.29.0" | ||
ENV CODER_CLI_VERSION="0.23.2" | ||
ENV CODER_CLI_VERSION="0.23.7" | ||
ENV TERRAFORM_VERSION="1.4.6" | ||
ENV BAZELISK_VERSION="1.16.0" | ||
ENV KUBECTL_VERSION="1.27.1" | ||
ENV BAZELISK_VERSION="1.17.0" | ||
ENV KUBECTL_VERSION="1.27.2" | ||
ENV HELM_VERSION="3.12.0" | ||
|
||
# Get current architecture and download software here | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work! | ||
# Copyright (c) 2022-2023 Noel <[email protected]> | ||
# Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work! | ||
# Copyright (c) 2022-2023 Noel <[email protected]> | ||
# Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work! | ||
# Copyright (c) 2022-2023 Noel <[email protected]> | ||
# Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work! | ||
# Copyright (c) 2022-2023 Noel <[email protected]> | ||
# Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -27,7 +27,7 @@ ENV USERNAME=noel | |
USER root | ||
|
||
# versions here | ||
ENV NODE_VERSION="20.1.0" | ||
ENV NODE_VERSION="20.2.0" | ||
|
||
# Install xz-utils so we can unpack the Node.js installation | ||
RUN DEBIAN_FRONTEND="noninteractive" apt install -y xz-utils | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# 💐💚 coder-images: Optimized, and easy Docker images and Coder templates to use in your everyday work! | ||
# Copyright (c) 2022-2023 Noel <[email protected]> | ||
# Copyright (c) 2022-2023 Noel Towa <[email protected]> | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"] | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"] | ||
} |