Skip to content

Commit

Permalink
Docker Deepsource
Browse files Browse the repository at this point in the history
  • Loading branch information
NelsonDane committed Jun 30, 2023
1 parent 36f837c commit bbc2f58
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Install Edge
RUN wget https://packages.microsoft.com/keys/microsoft.asc -O- | apt-key add -
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list'
RUN apt-get update && apt-get install -y --no-install-recommends microsoft-edge-stable && rm -rf /var/lib/apt/lists/*

Expand All @@ -37,8 +38,8 @@ COPY ./requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Install playwright
RUN playwright install
RUN playwright install-deps
RUN playwright install && \
playwright install-deps

# Grab needed files
COPY ./autoRSA.py .
Expand Down

0 comments on commit bbc2f58

Please sign in to comment.