Commit 8230b29198ec937024d234f9366addcc42a67131
1 parent
791bb161
Add additional "apt-get update" command to Dockerfile.marcell.
Showing
1 changed file
with
1 additions
and
1 deletions
Dockerfile.marcell
... | ... | @@ -49,7 +49,7 @@ WORKDIR $APP_HOME |
49 | 49 | # install dependencies |
50 | 50 | COPY --from=builder /usr/src/collector/wheels /wheels |
51 | 51 | COPY --from=builder /usr/src/collector/requirements.txt . |
52 | -RUN apt-get install -y openjdk-8-jre python3-pip software-properties-common wget gosu && \ | |
52 | +RUN apt-get update && apt-get install -y openjdk-8-jre python3-pip software-properties-common wget gosu && \ | |
53 | 53 | wget -O - http://download.sgjp.pl/apt/sgjp.gpg.key|apt-key add - && \ |
54 | 54 | apt-add-repository http://download.sgjp.pl/apt/ubuntu && \ |
55 | 55 | wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \ |
... | ... |