reorginization of files, updated language containers
This commit is contained in:
19
language-containers/dotnet/Containerfile
Normal file
19
language-containers/dotnet/Containerfile
Normal file
@ -0,0 +1,19 @@
|
||||
# .NET development container image
|
||||
# Written by Wyatt J. Miller, 2023
|
||||
# This image is opinionated, but you're welcome to customize as much as you like
|
||||
|
||||
# Start with the Fedora 38 image
|
||||
FROM registry.fedoraproject.org/fedora-toolbox:38
|
||||
|
||||
# Label it right, ya know?
|
||||
ENV NAME=custom_dotnet_base_image VERSION=1.0
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
com.redhat.component="$NAME" \
|
||||
name="$NAME" \
|
||||
version="$VERSION" \
|
||||
usage=".NET currrent custom developer images" \
|
||||
summary="Wyatt's custom .NET 7 image" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>"
|
||||
|
||||
# Install .NET and related tools
|
||||
RUN dnf install dotnet-sdk-7.0 dotnet-templates-7.0
|
20
language-containers/dotnet/Containerfile.lts
Normal file
20
language-containers/dotnet/Containerfile.lts
Normal file
@ -0,0 +1,20 @@
|
||||
# .NET LTS development container image
|
||||
# Written by Wyatt J. Miller, 2023, 2024
|
||||
# This image is opinionated, but you're welcome to customize as much as you like
|
||||
|
||||
# Start with the Fedora 39 image
|
||||
FROM scm.wyattjmiller.com/wymiller/base_container:latest
|
||||
|
||||
# Label it right, ya know?
|
||||
ENV NAME=custom_dotnet_lts_image VERSION=1.1
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
com.redhat.component="$NAME" \
|
||||
name="$NAME" \
|
||||
version="$VERSION" \
|
||||
usage=".NET LTS custom developer image" \
|
||||
summary="Wyatt's custom .NET LTS image" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>"
|
||||
|
||||
# Install .NET and related tools
|
||||
RUN dnf install dotnet-sdk-8.0 dotnet-templates-8.0
|
||||
RUN fish -c "set -gx DOTNET_PATH $HOME/.dotnet/tools"
|
21
language-containers/golang/Containerfile
Normal file
21
language-containers/golang/Containerfile
Normal file
@ -0,0 +1,21 @@
|
||||
# Base Golang development image
|
||||
# Written by Wyatt J. Miller, 2024
|
||||
# This image is opinionated, but you're welcome to customize as much as you like
|
||||
|
||||
# Get my custom base image from scm
|
||||
FROM scm.wyattjmiller.com/wymiller/base_container:latest
|
||||
|
||||
# Label it right, ya know?
|
||||
ENV NAME=custom_base_golang_image VERSION=1.0
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
com.redhat.component="$NAME" \
|
||||
name="$NAME" \
|
||||
version="$VERSION" \
|
||||
usage="Wyatt's base Golang image" \
|
||||
summary="Wyatt's custom base Golang image" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Download Golang and set the GOPATH
|
||||
RUN dnf install golang -y -q
|
||||
RUN fish -c "set -gx GOPATH /var/home/wyatt/Source/go/"
|
21
language-containers/nodejs/Containerfile
Normal file
21
language-containers/nodejs/Containerfile
Normal file
@ -0,0 +1,21 @@
|
||||
# Base Node.js container image
|
||||
# Written by Wyatt J. Miller, 2023, 2024
|
||||
# This image is opinionated, but you're welcome to customize as much as you like
|
||||
|
||||
# Start with the Fedora 39 image
|
||||
FROM scm.wyattjmiller.com/wymiller/base_container:latest
|
||||
|
||||
# Label it right, ya know?
|
||||
ENV NAME=custom_base_node20_image VERSION=1.1
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
com.redhat.component="$NAME" \
|
||||
name="$NAME" \
|
||||
version="$VERSION" \
|
||||
usage="Wyatt's base Node.js image" \
|
||||
summary="Wyatt's custom base Node 20 image" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Install base development packages
|
||||
RUN dnf install nodejs npm -y -q
|
||||
RUN npm install typescript -g
|
21
language-containers/nodejs/Containerfile.node18
Normal file
21
language-containers/nodejs/Containerfile.node18
Normal file
@ -0,0 +1,21 @@
|
||||
# Base Node.js container image
|
||||
# Written by Wyatt J. Miller, 2023, 2024
|
||||
# This image is opinionated, but you're welcome to customize as much as you like
|
||||
|
||||
# Start with the Fedora 39 image
|
||||
FROM scm.wyattjmiller.com/wymiller/base_container:latest
|
||||
|
||||
# Label it right, ya know?
|
||||
ENV NAME=custom_base_node18_image VERSION=1.1
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
com.redhat.component="$NAME" \
|
||||
name="$NAME" \
|
||||
version="$VERSION" \
|
||||
usage="Wyatt's base Node.js image" \
|
||||
summary="Wyatt's custom base Node 18 image" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Install base development packages
|
||||
RUN dnf install nodejs18 npm -y -q
|
||||
RUN npm install typescript -g
|
20
language-containers/rust/Containerfile
Normal file
20
language-containers/rust/Containerfile
Normal file
@ -0,0 +1,20 @@
|
||||
# Base Rust image
|
||||
# Written by Wyatt J. Miller, 2024
|
||||
# This image is opinionated, but you're welcome to customize as much as you like
|
||||
|
||||
# Get my custom base image from scm
|
||||
FROM scm.wyattjmiller.com/wymiller/base_container:latest
|
||||
|
||||
# Label it right, ya know?
|
||||
ENV NAME=custom_base_rust_image VERSION=1.1
|
||||
LABEL com.github.containers.toolbox="true" \
|
||||
com.redhat.component="$NAME" \
|
||||
name="$NAME" \
|
||||
version="$VERSION" \
|
||||
usage="Wyatt's base Rust image" \
|
||||
summary="Wyatt's custom base Rust image" \
|
||||
maintainer="Wyatt J. Miller <wyatt@wyattjmiller.com>" \
|
||||
vendor="Miller Web Solutions"
|
||||
|
||||
# Get latest Rust
|
||||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
Reference in New Issue
Block a user