Skip to content

Commit

Permalink
fix: github private token
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien3d committed Oct 4, 2024
1 parent 6fa65e9 commit 25c5891
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker/debian11/Dockerfile-tyr-worker
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM debian:bullseye-slim

WORKDIR /usr/src/app/

COPY ./source .

RUN apt-get update \
&& apt install -y python git libgeos-c1v5 libpq5 curl gcc pkg-config libssl-dev

Expand Down Expand Up @@ -58,7 +62,7 @@ RUN cd tartare-tools \
# cosmogony2cities_*.deb

# install tyr requirements
RUN pip install --no-cache-dir -r /usr/share/tyr/requirements.txt
RUN pip install --no-cache-dir -r /usr/src/app/source/tyr/requirements.txt

RUN apt install -y --force-yes unzip
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
Expand All @@ -69,7 +73,6 @@ RUN ./aws/install
EXPOSE 5000


WORKDIR /usr/src/app/
RUN cp /usr/bin/manage_tyr.py /usr/src/app/manage_tyr.py

# TODO change the user to remove this ugly C_FORCE_ROOT
Expand Down

0 comments on commit 25c5891

Please sign in to comment.