mfoud444 commited on
Commit
2fe3b43
·
verified ·
1 Parent(s): a37cebd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -2
Dockerfile CHANGED
@@ -2,8 +2,14 @@ FROM ubuntu:22.04
2
 
3
  ENV DEBIAN_FRONTEND=noninteractive
4
 
5
- RUN apt-get update && apt-get install -y curl && \
6
- curl -sSL https://dokploy.com/install.sh | sh
 
 
 
 
 
 
7
 
8
  EXPOSE 3000
9
 
 
2
 
3
  ENV DEBIAN_FRONTEND=noninteractive
4
 
5
+ # Update package lists and install necessary packages
6
+ RUN apt-get update && apt-get install -y \
7
+ curl \
8
+ iproute2 \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
+ # Run the Dokploy installation script
12
+ RUN curl -sSL https://dokploy.com/install.sh | sh
13
 
14
  EXPOSE 3000
15