Compare commits
No commits in common. "main" and "mikeroyal-patch-7" have entirely different histories.
main
...
mikeroyal-
3 changed files with 32 additions and 3929 deletions
|
@ -1,14 +0,0 @@
|
|||
# Contributing Guidelines
|
||||
|
||||
**Make sure your pull request follows these guidelines:**
|
||||
|
||||
- Search through the previous pull requests before making a new one!
|
||||
- Adding new categories, or improving existing categories is welcome!
|
||||
- Make sure you've personally used or benefited from the suggested resource.
|
||||
- Make an individual pull request for each suggestion.
|
||||
- Use the following format: `[Resource Title](url link) — description.`
|
||||
- Expand on why the resource is useful in your pull request if needed.
|
||||
- Keep descriptions short and simple, but descriptive.
|
||||
- Please double check your spelling and grammar.
|
||||
|
||||
**Thanks for contributing to this Project!**
|
|
@ -1,40 +1 @@
|
|||
Code samples & snippets coming soon!
|
||||
|
||||
#
|
||||
# Ubuntu
|
||||
#
|
||||
|
||||
# Pull base image.
|
||||
FROM ubuntu:22.04
|
||||
|
||||
# Install.
|
||||
RUN \
|
||||
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
|
||||
apt-get update && \
|
||||
apt-get -y upgrade && \
|
||||
apt-get install -y build-essential && \
|
||||
apt-get install -y software-properties-common && \
|
||||
apt-get install -y byobu curl git htop man unzip vim wget && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Add files.
|
||||
ADD root/.bashrc /root/.bashrc
|
||||
ADD root/.gitconfig /root/.gitconfig
|
||||
ADD root/.scripts /root/.scripts
|
||||
|
||||
# Set environment variables.
|
||||
ENV HOME /root
|
||||
|
||||
# Define working directory.
|
||||
WORKDIR /root
|
||||
|
||||
# Define default command.
|
||||
CMD ["bash"]
|
||||
|
||||
# Checking APT Cache
|
||||
|
||||
FROM ubuntu:22.04
|
||||
RUN rm -f /etc/apt/apt.conf.d/docker-clean; echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
|
||||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
||||
apt update && apt-get --no-install-recommends install -y gcc
|
||||
|
|
Loading…
Reference in a new issue