docker-builder/Dockerfile
Edouard DUPIN f097b58480
All checks were successful
WEB karideo and rabbit/docker-builder/pipeline/head This commit looks good
[DEV] add basic version
2023-01-10 22:39:38 +01:00

48 lines
844 B
Docker

FROM archlinux:latest
USER root
# update system
RUN pacman -Syu --noconfirm \
&& \
pacman-db-upgrade \
&& \
pacman -S --noconfirm \
jdk-openjdk \
maven \
npm \
gcc \
clang \
make \
python \
python-pip \
php \
git \
&& \
pacman -Scc --noconfirm
RUN pip install \
island \
lutin \
flake8 \
flake8-annotations \
flake8-blind-except \
flake8-bugbear \
flake8-builtins \
flake8-comprehensions \
flake8-deprecated==1.3 \
flake8-executable \
flake8-isort \
flake8-use-fstring \
black \
isort \
mypy \
docker-compose \
docker
ENV PATH /tmp/node_modules/.bin:$PATH
WORKDIR /workspace/
CMD ["/usr/bin/sleep", "5121512"]