Skip to content

Add a Dockerfile #42

@Ellipse0934

Description

@Ellipse0934

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 cont

and run via
docker run -it cont:latest

May I add ? uwu

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions