Skip to content

Commit

Permalink
refactor(docker): clear caches
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisDommer committed Dec 13, 2023
1 parent 2c3f77d commit a416c00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion WebSocketClient/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ COPY . .
RUN npm run build

# Install Nginx
RUN apt-get update && apt-get install -y nginx
RUN apt-get update
RUN apt-get install -y nginx
RUN apt-get clean

# Copy your static files into the Nginx document root directory
RUN cp -r dist/* /var/www/html/
Expand Down
3 changes: 2 additions & 1 deletion WebSocketLanguageServer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ FROM node:18
WORKDIR /usr/src/app

RUN apt-get update
RUN apt-get install z3
RUN apt-get install -y z3
RUN apt-get clean

COPY package*.json ./

Expand Down

0 comments on commit a416c00

Please sign in to comment.