Skip to content

Commit

Permalink
added cleaning image
Browse files Browse the repository at this point in the history
  • Loading branch information
polischuks committed Feb 15, 2024
1 parent 06d1bcc commit fd57455
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions epicbox-hyperskill/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ RUN apt-get update && apt-get install -y \
gcc \
linux-headers-amd64 \
unzip \
&& rm -rf /var/lib/apt/lists/*

RUN python3 -m venv /venv && \
. /venv/bin/activate && \
pip install aiosmtpd beautifulsoup4 pyyaml && \
pip install https://github.com/hyperskill/hs-test-python/archive/v11.0.0.tar.gz
&& python3 -m venv /venv \
&& . /venv/bin/activate \
&& pip install aiosmtpd beautifulsoup4 pyyaml \
&& pip install https://github.com/hyperskill/hs-test-python/archive/v11.0.0.tar.gz \
&& apt-get remove -y gcc python3-dev linux-headers-amd64 \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN mkdir /checker && \
curl -L -o /checker/kotlin.zip \
Expand Down

0 comments on commit fd57455

Please sign in to comment.