Skip to content

Instantly share code, notes, and snippets.

@v1-wizard
Created July 15, 2019 07:46
Show Gist options
  • Save v1-wizard/c65205784412967b6be0f6aa12484d7d to your computer and use it in GitHub Desktop.
Save v1-wizard/c65205784412967b6be0f6aa12484d7d to your computer and use it in GitHub Desktop.
FROM python:3-alpine3.8
LABEL maintainer="aliaksei.boole@rozum.com"
RUN apk add make git openssh build-base netcat-openbsd openjdk8-jre tar wget
RUN wget -c https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.7.0/allure-2.7.0.tgz -O - | \
tar -xz && chmod +x /allure-2.7.0/bin/allure
ENV PATH "$PATH:/allure-2.7.0/bin"
@aleksandr-kotlyar
Copy link

@v1-wizard
Copy link
Author

Нам просто иногда надо копились С сорсы в этом контейнере, перед этим их склонив. Вот и сделали все в одном. А netcat нам нужен, чтобы через tcp с приблудными электронными разговаривать. А все в одну строчку, чтобы был один слой, а не несколько.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment