Skip to content

Commit

Permalink
Merge pull request #68 from calebevans/fix_image
Browse files Browse the repository at this point in the history
[main Branch] Fix interop Docker image
  • Loading branch information
sshveta authored Feb 13, 2024
2 parents be9930c + 6b86d34 commit 2d5e0b8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions dockerfiles/interop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ FROM docker.io/cypress/included:12.7.0
ENV CYPRESS_CACHE_FOLDER=/tmp/.cache/Cypress
ENV npm_config_cache=/tmp/.cache/npm

# Update container and install unzip
RUN apt -y update && \
apt install -y unzip
# Must remove the Google Chrome repository to run apt update/install because the GPG is missing.
# Install unzip
RUN echo "" > /etc/apt/sources.list.d/google-chrome.list \
&& apt -y update \
&& apt install -y unzip

# Create /tmp/windup-ui-tests, copy this repo in to the container and install required Node packages
RUN mkdir /tmp/windup-ui-tests
Expand Down

0 comments on commit 2d5e0b8

Please sign in to comment.