Explorar el Código

Fix order of operations in Dockerfile

wip/gradle-reposilite
Sindre Stephansen hace 2 años
padre
commit
3d99fdb7bf
Firmado por: sindre <sindre@sindrestephansen.com> ID de clave GPG: B06FC67D17A46ADE
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      sync/Dockerfile

+ 3
- 3
sync/Dockerfile Ver fichero

@@ -4,10 +4,10 @@ WORKDIR /workdir

RUN apt-get update && apt-get install -y python3-pip

COPY resolve-deps.sh .
COPY generate-gradle.py .
COPY requirements.txt .

RUN python3 -m pip install -r requirements.txt

COPY resolve-deps.sh .
COPY generate-gradle.py .

CMD [ "./resolve-deps.sh" ]

Cargando…
Cancelar
Guardar