-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Having a dockerfile is a convenient way for devs to bootstrap quickly irrespective of OS/package manager. Will allow them to dip their toes in the project without having to install and manage deps.
I personally don't have apt or python installed and it creates an overhead for me to install and later remember to gc it. We could add a dockerfile in the project to be a little helpful.
FROM debian
SHELL ["/bin/bash", "-c"]
RUN apt-get update
RUN apt install -y git \
python3 \
python3-pytest \
fasm \
nodejs \
wabt
RUN groupadd -g 2000 bischebis \
&& useradd -m -u 2001 -g bischebis bischebis
USER bischebis
WORKDIR /home/bischebis
RUN git clone https://github.com/farkon00/cont
WORKDIR contand run via
docker run -it cont:latest
May I add ? uwu
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request