De façon générale, la liberté est un concept qui désigne la possibilité d'action ou de mouvement.
[…]
Pour le sens commun, la liberté s'oppose à la notion d'enfermement ou de séquestration.
Le contrôle est une aptitude à diriger ou supprimer le changement.
[…]
Le contrôle vise à réduire l'incertitude sur un système ou un élément d'un système. Il peut être une réaction à la peur ou à l'angoisse.
(on résume)
Reproductibilité
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y nginx
cmd nginx
$ docker build .
$ docker run $container
FROM python:3
ADD my_script.py /
RUN pip install pystrich
CMD [ "python", "./my_script.py" ]
# Sample taken from pyStrich GitHub repository
# https://github.com/mmulqueen/pyStrich
from pystrich.datamatrix import DataMatrixEncoder
encoder = DataMatrixEncoder('This is a DataMatrix.')
encoder.save('./datamatrix_test.png')
print(encoder.get_ascii())
FROM golang:1.7.3 as builder
RUN go get -d -v github.com/alexellis/href-counter
WORKDIR /go/src/github.com/alexellis/href-counter/
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY --from=builder /go/src/github.com/alexellis/href-counter/app .
ENV url=https://barpilot.io
ENTRYPOINT ["./app"]
$ docker tag
$ docker push
$ docker run -it ubuntu bash
$ docker run hello-world
Pas de ménage dans les layers
RUN apt-get update -y && apt-get install -y software
RUN apt-get update -y
RUN apt-get update -y
RUN apt-get update -y
RUN apt-get install -y software
RUN apt-get install -y lib-dev
RUN $complile
RUN apt-get remove -y lib-dev