Skip to content

Commit

Permalink
Node 20 everywhere + Manual edgedriver again
Browse files Browse the repository at this point in the history
  • Loading branch information
sMeilbeck committed Sep 20, 2024
1 parent c9c5157 commit 87e16d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ RUN add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/ed
RUN apt-get update && apt-get install -qq -y microsoft-edge-stable

# Install msedgedriver
RUN apt-get install -yqq msedge-driver
RUN ln -s /usr/bin/msedgedriver /usr/local/bin/msedgedriver
RUN wget -q -O /tmp/msedgedriver.zip https://msedgedriver.azureedge.net/LATEST_STABLE/msedgedriver-linux64.zip
RUN unzip /tmp/msedgedriver.zip -d /usr/local/bin/
RUN chmod +x /usr/local/bin/msedgedriver


# Clean up the cache after installing all necessary packages
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use build argument for Node.js version
ARG NODE_VERSION=20.9
ARG NODE_VERSION=20
FROM node:${NODE_VERSION}

RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use build argument for Node.js version
ARG NODE_VERSION=20.9
ARG NODE_VERSION=20
FROM node:${NODE_VERSION}

# Create app directory
Expand Down

0 comments on commit 87e16d8

Please sign in to comment.