Skip to content

Commit

Permalink
try changes
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Oct 2, 2024
1 parent 1380617 commit 3528b56
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions test/functional/command/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
FROM conan-tests:latest
FROM ubuntu:22.04

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
cmake \
python3 \
python3-pip \
python3-venv \
sudo \
&& rm -rf /var/lib/apt/lists/*

ARG DOCKER_GID=127

RUN groupadd -g $DOCKER_GID docker || groupmod -g $DOCKER_GID docker

RUN usermod -aG docker root

COPY . /root/conan-io
RUN cd /root/conan-io && pip install -e .
RUN cd /root/conan-io && pip install -e .

0 comments on commit 3528b56

Please sign in to comment.