Skip to content

Commit

Permalink
💚 Fix CI netcat install
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinbreiz committed Aug 23, 2023
1 parent 7094c97 commit 30aab46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:18.16.0

RUN apt-get update && apt-get install -y netcat && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y netcat-openbsd && rm -rf /var/lib/apt/lists/*

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:18.16.0

RUN apt-get update && apt-get install -y netcat && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y netcat-openbsd && rm -rf /var/lib/apt/lists/*

WORKDIR /app

Expand Down

0 comments on commit 30aab46

Please sign in to comment.